-- MySQL dump 10.19  Distrib 10.2.40-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: piyush5_wp759
-- ------------------------------------------------------
-- Server version	10.2.40-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 `wpw8_commentmeta`
--

DROP TABLE IF EXISTS `wpw8_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_commentmeta`
--

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

--
-- Table structure for table `wpw8_comments`
--

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

--
-- Dumping data for table `wpw8_comments`
--

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

--
-- Table structure for table `wpw8_links`
--

DROP TABLE IF EXISTS `wpw8_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_links`
--

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

--
-- Table structure for table `wpw8_options`
--

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

--
-- Dumping data for table `wpw8_options`
--

LOCK TABLES `wpw8_options` WRITE;
/*!40000 ALTER TABLE `wpw8_options` DISABLE KEYS */;
INSERT INTO `wpw8_options` VALUES (1,'siteurl','http://www.purpletulip.ca','yes'),(2,'home','http://www.purpletulip.ca','yes'),(3,'blogname','Purple Tulip Catering','yes'),(4,'blogdescription','for the discerning host','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','piyush@piyush.ca','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:138:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:13:\"^attribution$\";s:36:\"index.php?bg_attribution=attribution\";s:21:\"^attribution-staging$\";s:44:\"index.php?bg_attribution=attribution-staging\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"bg_attribution/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"bg_attribution/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"bg_attribution/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"bg_attribution/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"bg_attribution/([^/]+)/embed/?$\";s:47:\"index.php?bg_attribution=$matches[1]&embed=true\";s:35:\"bg_attribution/([^/]+)/trackback/?$\";s:41:\"index.php?bg_attribution=$matches[1]&tb=1\";s:43:\"bg_attribution/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&paged=$matches[2]\";s:50:\"bg_attribution/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&cpage=$matches[2]\";s:39:\"bg_attribution/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?bg_attribution=$matches[1]&page=$matches[2]\";s:31:\"bg_attribution/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"bg_attribution/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"bg_attribution/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"bg_attribution/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"bg-block-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:50:\"bg-block-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:31:\"bg-block-types/([^/]+)/embed/?$\";s:46:\"index.php?bg_block_type=$matches[1]&embed=true\";s:43:\"bg-block-types/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?bg_block_type=$matches[1]&paged=$matches[2]\";s:25:\"bg-block-types/([^/]+)/?$\";s:35:\"index.php?bg_block_type=$matches[1]\";s:36:\"bg-block/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"bg-block/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"bg-block/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"bg-block/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"bg-block/([^/]+)/embed/?$\";s:41:\"index.php?bg_block=$matches[1]&embed=true\";s:29:\"bg-block/([^/]+)/trackback/?$\";s:35:\"index.php?bg_block=$matches[1]&tb=1\";s:37:\"bg-block/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&paged=$matches[2]\";s:44:\"bg-block/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&cpage=$matches[2]\";s:33:\"bg-block/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?bg_block=$matches[1]&page=$matches[2]\";s:25:\"bg-block/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"bg-block/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"bg-block/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"bg-block/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=8&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:8:{i:0;s:19:\"akismet/akismet.php\";i:1;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:2;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:3;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:4;s:19:\"jetpack/jetpack.php\";i:5;s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";i:6;s:47:\"post-and-page-builder/post-and-page-builder.php\";i:7;s:19:\"weforms/weforms.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:2:{i:0;s:72:\"/home/piyush5/purpletulip.ca/wp-content/themes/twentyseventeen/style.css\";i:1;s:0:\"\";}','no'),(40,'template','twentyseventeen','yes'),(41,'stylesheet','twentyseventeen','yes'),(16884,'finished_updating_comment_type','1','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','49752','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:3:{i:2;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:103:\"<strong>Phone    </strong>778 590 2573\r\n\r\n<strong>Hours</strong>\r\nMonday–Saturday: 11:00AM–8:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','8','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','130','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','8','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'admin_email_lifespan','1645256050','yes'),(94,'initial_db_version','47018','yes'),(95,'wpw8_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{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: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;}}}','yes'),(96,'fresh_site','0','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:9:\"sidebar-2\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(103,'cron','a:11:{i:1629902863;a:2:{s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1629903180;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:1629904057;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:1629906779;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:1629922063;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:1629922144;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:1629949979;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1629950023;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1629950025;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:1629963698;a:1:{s:24:\"grunion_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(104,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'recovery_keys','a:0:{}','yes'),(114,'theme_mods_twentytwenty','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1587527914;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-3\";}}}}','yes'),(115,'boldgrid_settings','a:5:{s:7:\"library\";a:3:{s:47:\"post-and-page-builder/post-and-page-builder.php\";s:8:\"2.12.3.0\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.13.3.0\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:8:\"2.13.2.0\";}s:15:\"plugins_checked\";a:5:{s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:3:{s:5:\"2.3.1\";i:1587527618;s:5:\"2.4.3\";i:1598732294;s:5:\"2.4.4\";i:1603247242;}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:2:{s:6:\"1.12.1\";i:1598731639;s:6:\"1.13.4\";i:1603247242;}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";a:1:{s:5:\"1.0.4\";i:1603247242;}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:3:{s:6:\"1.12.1\";i:1598731639;s:6:\"1.14.4\";i:1598732294;s:6:\"1.14.6\";i:1603247242;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:2:{s:5:\"1.3.0\";i:1598732294;s:5:\"1.5.4\";i:1603247242;}}s:20:\"boldgrid_menu_option\";s:1:\"1\";s:15:\"release_channel\";s:6:\"stable\";s:21:\"theme_release_channel\";s:6:\"stable\";}','yes'),(117,'boldgrid_attribution_rebuild','1','yes'),(118,'boldgrid_staging_boldgrid_attribution_rebuild','1','yes'),(119,'boldgrid_attribution_upgraded_to_cpt','1','yes'),(145,'boldgrid_editor','a:10:{s:19:\"has_flushed_rewrite\";b:1;s:19:\"has_checked_version\";i:0;s:15:\"preview_page_id\";i:37;s:7:\"notices\";a:1:{s:13:\"editor_choice\";a:1:{s:9:\"dismissed\";b:1;}}s:21:\"displayed_v1.3_notice\";i:1;s:13:\"custom_colors\";a:0:{}s:18:\"count_usage_blocks\";i:22;s:22:\"block_default_industry\";s:10:\"restaurant\";s:12:\"preview_meta\";a:2:{s:8:\"template\";s:7:\"default\";s:24:\"boldgrid_hide_page_title\";i:0;}s:14:\"default_editor\";a:4:{s:4:\"post\";s:7:\"default\";s:4:\"page\";s:5:\"bgppb\";s:14:\"bg_attribution\";s:7:\"default\";s:8:\"bg_block\";s:6:\"modern\";}}','yes'),(330917,'_site_transient_timeout_theme_roots','1629904542','no'),(330918,'_site_transient_theme_roots','a:4:{s:5:\"mapro\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";}','no'),(324613,'_site_transient_timeout_php_check_6a93f292d9a273c004fc36e1f86d97b3','1629953418','no'),(324614,'_site_transient_php_check_6a93f292d9a273c004fc36e1f86d97b3','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(330901,'_transient_timeout_jetpack_sync_constants_await','1629903365','no'),(330902,'_transient_jetpack_sync_constants_await','1629899765.9874','no'),(330042,'_transient_timeout_jetpack_https_test','1629926099','no'),(330043,'_transient_jetpack_https_test','1','no'),(330044,'_transient_timeout_jetpack_https_test_message','1629926099','no'),(330045,'_transient_jetpack_https_test_message','','no'),(133236,'auto_update_core_dev','enabled','yes'),(133237,'auto_update_core_minor','enabled','yes'),(133238,'auto_update_core_major','unset','yes'),(35843,'widget_weforms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(133,'boldgrid_backup_id','c8f739c7','no'),(134,'boldgrid_backup_settings','a:14:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:4;s:5:\"tod_m\";i:12;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:21:\"piyush@purpletulip.ca\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:1:{s:5:\"local\";a:1:{s:7:\"enabled\";b:1;}}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:10:\"encrypt_db\";b:0;s:16:\"backup_directory\";s:29:\"/home/piyush5/boldgrid_backup\";s:11:\"cron_secret\";s:64:\"8ec9401dce6b94e1b891c906c4ce09d31f74db9d52b722aeb33517fcc62ee4b4\";}','no'),(137,'jetpack_sync_settings_disable','0','yes'),(138,'widget_boldgrid_component_post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(139,'widget_boldgrid_component_postlist','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(148,'bglib_activity','a:2:{s:5:\"bgppb\";a:1:{s:14:\"dedicated_user\";i:1;}s:15:\"boldgrid-backup\";a:1:{s:18:\"any_backup_created\";i:13;}}','yes'),(149,'bglib_rating_prompt','a:2:{i:0;a:6:{s:6:\"plugin\";s:5:\"bgppb\";s:4:\"name\";s:14:\"dedicated_user\";s:6:\"slides\";a:4:{s:5:\"start\";a:2:{s:4:\"text\";s:238:\"Great job keeping your plugin up to date and thank you for being a dedicated BoldGrid user. If you feel you\'re getting really good value from the Post and Page Builder by BoldGrid, could you do us a favor and rate us 5 stars on WordPress?\";s:9:\"decisions\";a:3:{s:9:\"sure_will\";a:3:{s:4:\"text\";s:17:\"Yes, I sure will!\";s:4:\"link\";s:67:\"https://wordpress.org/support/plugin/post-and-page-builder/reviews/\";s:5:\"slide\";s:6:\"thanks\";}s:19:\"maybe_still_testing\";a:3:{s:4:\"text\";s:42:\"Maybe later, I\'m still testing the plugin.\";s:6:\"snooze\";i:604800;s:5:\"slide\";s:11:\"maybe_later\";}s:11:\"already_did\";a:2:{s:4:\"text\";s:13:\"I already did\";s:5:\"slide\";s:11:\"already_did\";}}}s:6:\"thanks\";a:1:{s:4:\"text\";s:405:\"Thanks! A new page should have opened to the Post and Page Builder ratings page on WordPress.org. You will need to log in to your WordPress.org account before you can post a review. If the page didn\'t open, please click the following link: <a href=\"https://wordpress.org/support/plugin/post-and-page-builder/reviews/\" target=\"_blank\">https://wordpress.org/support/plugin/post-and-page-builder/reviews/</a>\";}s:11:\"maybe_later\";a:1:{s:4:\"text\";s:240:\"No problem, maybe now is not a good time. We want to be your WordPress page builder of choice. If you\'re experiencing a problem or want to make a suggestion, please <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">click here</a>.\";}s:11:\"already_did\";a:1:{s:4:\"text\";s:280:\"Thank you for the previous rating! You can help us to continue improving the Post and Page Builder by reporting any bugs or submitting feature requests <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">here</a>. Thank you for using the Post and Page Builder by BoldGrid!\";}}s:10:\"time_added\";i:1587527623;s:12:\"time_snoozed\";i:1603235272;s:18:\"time_snoozed_until\";i:1603840072;}i:1;a:4:{s:6:\"plugin\";s:15:\"boldgrid-backup\";s:4:\"name\";s:18:\"any_backup_created\";s:6:\"slides\";a:4:{s:5:\"start\";a:2:{s:4:\"text\";s:212:\"It looks like you&#039;ve created 10 backups with the Total Upkeep plugin! If you feel you&#039;re getting really good value from the Total Upkeep plugin, could you do us a favor and rate us 5 stars on WordPress?\";s:9:\"decisions\";a:3:{s:9:\"sure_will\";a:3:{s:4:\"text\";s:17:\"Yes, I sure will!\";s:4:\"link\";s:61:\"https://wordpress.org/support/plugin/boldgrid-backup/reviews/\";s:5:\"slide\";s:6:\"thanks\";}s:19:\"maybe_still_testing\";a:3:{s:4:\"text\";s:47:\"Maybe later, I&#039;m still testing the plugin.\";s:6:\"snooze\";i:604800;s:5:\"slide\";s:11:\"maybe_later\";}s:11:\"already_did\";a:2:{s:4:\"text\";s:13:\"I already did\";s:5:\"slide\";s:11:\"already_did\";}}}s:6:\"thanks\";a:1:{s:4:\"text\";s:389:\"Thanks! A new page should have opened to the Total Upkeep ratings page on WordPress.org. You will need to log in to your WordPress.org account before you can post a review. If the page didn&#039;t open, please click the following link: <a href=\"https://wordpress.org/support/plugin/boldgrid-backup/reviews/\" target=\"_blank\">https://wordpress.org/support/plugin/boldgrid-backup/reviews/</a>\";}s:11:\"maybe_later\";a:1:{s:4:\"text\";s:246:\"No problem, maybe now is not a good time. We want to be your WordPress backup plugin of choice. If you&#039;re experiencing a problem or want to make a suggestion, please <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">click here</a>.\";}s:11:\"already_did\";a:1:{s:4:\"text\";s:264:\"Thank you for the previous rating! You can help us to continue improving the Total Upkeep plugin by reporting any bugs or submitting feature requests <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">here</a>. Thank you for using the Total Upkeep plugin!\";}}s:10:\"time_added\";i:1612392020;}}','yes'),(16647,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(16648,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(16649,'jetpack_sync_settings_upload_max_rows','500','yes'),(16650,'jetpack_sync_settings_sync_wait_time','10','yes'),(16651,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(16652,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(16653,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(16654,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(16655,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(16656,'jetpack_sync_settings_render_filtered_content','0','yes'),(16657,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(16658,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(16659,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(16660,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(16661,'jetpack_sync_settings_sync_via_cron','1','yes'),(16662,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(16663,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(16664,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(16665,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(16666,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(16667,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(16668,'jetpack_sync_settings_full_sync_limits','a:5:{s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}}','yes'),(16671,'jetpack_plugin_api_action_links','a:2:{s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:8:\"Settings\";s:74:\"http://www.purpletulip.ca/wp-admin/admin.php?page=boldgrid-backup-settings\";}s:19:\"weforms/weforms.php\";a:2:{s:4:\"Docs\";s:104:\"https://weformspro.com/?utm_source=weforms-action-link&utm_medium=textlink&utm_campaign=plugin-docs-link\";s:8:\"Settings\";s:57:\"http://www.purpletulip.ca/wp-admin/admin.php?page=weforms\";}}','yes'),(16881,'disallowed_keys','','no'),(16882,'comment_previously_approved','1','yes'),(16883,'auto_plugin_theme_update_emails','a:0:{}','no'),(16616,'jetpack_tos_agreed','1','yes'),(16617,'jetpack_secrets','a:0:{}','no'),(16618,'_transient_jetpack_assumed_site_creation_date','2020-04-22 03:52:59','yes'),(16796,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:182187253;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(16762,'jetpack_testimonial','0','yes'),(16809,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(16765,'jetpack_next_sync_time_sync','1629704796','yes'),(16366,'boldgrid_mobile_ratio','0:16','no'),(16885,'db_upgraded','','yes'),(16485,'category_children','a:0:{}','yes'),(154,'do_activate','0','yes'),(155,'jetpack_activated','2','yes'),(156,'jetpack_options','a:8:{s:7:\"version\";s:16:\"9.0.2:1603247242\";s:11:\"old_version\";s:16:\"8.8.2:1598731666\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:182187253;s:6:\"public\";i:1;s:11:\"master_user\";i:1;s:14:\"last_heartbeat\";i:1629839699;}','yes'),(161,'boldgrid_pointers','a:4:{i:0;a:6:{s:2:\"id\";s:37:\"boldgrid_image_search_internal_only_8\";s:6:\"screen\";s:4:\"page\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:1;a:6:{s:2:\"id\";s:49:\"boldgrid_media_library_image_search_internal_only\";s:6:\"screen\";s:6:\"upload\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:3:{s:4:\"edge\";s:3:\"top\";s:5:\"align\";s:6:\"middle\";s:17:\"open_on_page_load\";b:0;}}i:2;a:6:{s:2:\"id\";s:38:\"boldgrid_image_size_do_you_need_help_8\";s:6:\"screen\";s:12:\"media-upload\";s:6:\"target\";s:11:\"#image_size\";s:5:\"title\";s:10:\"Image size\";s:7:\"content\";s:33:\"Need help choosing an image size?\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:3;a:6:{s:2:\"id\";s:29:\"boldgrid_customization_widget\";s:6:\"screen\";s:9:\"dashboard\";s:6:\"target\";s:21:\"#customization_widget\";s:5:\"title\";s:35:\"Begin customizing your new website!\";s:7:\"content\";s:130:\"Congratulations, you&#039;ve just installed your new website! Below you&#039;ll find tips to help you begin customizing your site.\";s:8:\"position\";a:2:{s:4:\"edge\";s:6:\"bottom\";s:5:\"align\";s:6:\"middle\";}}}','yes'),(16798,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(16642,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(16644,'jetpack_sync_settings_max_queue_size','5000','yes'),(16645,'jetpack_sync_settings_max_queue_lag','7200','yes'),(16646,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1598731656;s:8:\"finished\";i:1598731675;s:8:\"progress\";a:5:{s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}s:5:\"users\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:15:\"network_options\";a:1:{s:8:\"finished\";b:1;}}s:6:\"config\";a:5:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}s:15:\"network_options\";b:1;}}','no'),(330927,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1629903046','no'),(330928,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(330933,'_site_transient_timeout_boldgrid_available','1629902895','no'),(330934,'_site_transient_boldgrid_available','1','no'),(330935,'_site_transient_timeout_boldgrid_plugins','1629931575','no'),(330936,'_site_transient_boldgrid_plugins','O:8:\"stdClass\":2:{s:21:\"boldgrid-inspirations\";O:8:\"stdClass\":24:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"2.6.3\";s:8:\"asset_id\";i:1201345;s:12:\"release_date\";s:19:\"2021-06-10 18:01:27\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.8\";s:8:\"sections\";a:4:{s:11:\"description\";s:377:\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.</p>\n<p>The first phase is Inspiration; the guided tool creates your base website. If you already have a website, then you can skip this step.</p>\n<p>The second phase is Customization; tools to transform your website into your vision.</p>\n\";s:12:\"installation\";s:283:\"<ol>\n<li><p>Upload the entire boldgrid-inspirations folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n<li><p>You will find the Inspirations menu in your WordPress Dashboard / admin panel.</p></li>\n</ol>\n\";s:9:\"changelog\";s:42046:\"<h4>2.6.3</h4>\n<p>Release date: June 10th, 2021</p>\n<ul>\n<li>Update: Updated the way blogs are installed via Inspirations.</li>\n<li>Update: Updated the My Inspirations page with links to theme support.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.6.2</h4>\n<p>Release date: April 14th, 2021</p>\n<ul>\n<li>Update: Add support for footer-menu locations</li>\n</ul>\n<h4>2.6.1</h4>\n<p>Release date: February 16th, 2021</p>\n<ul>\n<li>Update: Disable custom menu by default.</li>\n<li>Bug fix: Add \"My Inspirations\" link in case js does not redirect.</li>\n</ul>\n<h4>2.6.0</h4>\n<p>Release date: January 25th, 2021</p>\n<ul>\n<li>New feature: Theme deployments can now include theme specific plugins.</li>\n</ul>\n<h4>2.5.2</h4>\n<p>Release date: December 8th, 2020</p>\n<ul>\n<li>Bug fix: Fixed Gutenberg detection, avoid errors when adding media.</li>\n<li>Bug fix: Avoid js errors when editor screens have no ability to add media.</li>\n</ul>\n<h4>2.5.1</h4>\n<p>Release date: October 23rd, 2020</p>\n<ul>\n<li>Bug fix: Fixed \"Only variables should be passed by reference\" in class-boldgrid-inspirations-purchase-for-publish.php.</li>\n</ul>\n<h4>2.5.0</h4>\n<p>Release date: October 17th, 2020</p>\n<ul>\n<li>New feature: Invoicing and Caching options added as Inspirations features.</li>\n</ul>\n<h4>2.4.4</h4>\n<p>Release date: September 22nd, 2020</p>\n<ul>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.3</h4>\n<p>Release date: August 11th, 2020</p>\n<ul>\n<li>Bug fix: WordPress 5.5 compatibility changes.</li>\n<li>Update: Optimized usage of set<em>staging</em>installed.</li>\n<li>Update: Optimized \"get total coin cost\".</li>\n<li>Update: Updated links in login footer</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.2</h4>\n<p>Release date: June 15th, 2020</p>\n<ul>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.1</h4>\n<p>Release date: May 29th, 2020</p>\n<ul>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.0</h4>\n<p>Release date: May 18th, 2020</p>\n<ul>\n<li>Update: Changes needed for Crio.</li>\n<li>Bug fix: Attribution page will not show excpert.</li>\n<li>Bug fix: Fixed display / position of BoldGrid Connect image search results.</li>\n</ul>\n<h4>2.3.1</h4>\n<p>Release date: March 12th, 2020</p>\n<ul>\n<li>Bug fix: Unable to click button on email confirmation page.</li>\n<li>Update: Removed \"Add new from GridBlocks\" feature.</li>\n</ul>\n<h4>2.3.0</h4>\n<p>Release date: December 17th, 2019</p>\n<ul>\n<li>Bug fix: Added noindex to the attribution page.</li>\n<li>Update: Changed the form plugin from WPForms to weForms.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.2.2</h4>\n<p>Release date: November 22st, 2019</p>\n<ul>\n<li>Update: BoldGrid Backup is now Total Upkeep - updating references.</li>\n<li>Update: Updated dependency boldgrid/library to 2.10.6.</li>\n</ul>\n<h4>2.2.1</h4>\n<p>Release date: October 15th, 2019</p>\n<ul>\n<li>Update: Updated dependency boldgrid/library to 2.10.4.</li>\n</ul>\n<h4>2.2.0</h4>\n<p>Release date: September 17th, 2019</p>\n<ul>\n<li>New feature: Recommend the BoldGrid Backup plugin for users needing to transfer a site.</li>\n<li>Update: Updating dependencies</li>\n</ul>\n<h4>2.1.1</h4>\n<p>Release date: September 5th, 2019</p>\n<ul>\n<li>Update: Updating dependencies</li>\n</ul>\n<h4>2.1.0</h4>\n<p>Release date: August 29th, 2019</p>\n<ul>\n<li>Update: Removed the \"Welcome to BoldGrid\" dashboard widget.</li>\n<li>Update: Add notice to dashboard widget.</li>\n<li>Update: Remove news widget from dashboard.</li>\n</ul>\n<h4>2.0.7</h4>\n<p>Release date: August 16, 2019</p>\n<ul>\n<li>Bug fix: Fixing compact warnings</li>\n</ul>\n<h4>2.0.6</h4>\n<p>Release date: August 1st, 2019</p>\n<ul>\n<li>Update: Updated dependencies</li>\n</ul>\n<h4>2.0.5</h4>\n<p>Release date: July 25th, 2019</p>\n<ul>\n<li>Update: Added a switch for toggling branding of the login page.</li>\n<li>Update: Cleaned up logic on purchase coins page.</li>\n<li>Update: Updated dependencies</li>\n</ul>\n<h4>2.0.4</h4>\n<p>Release date: July 2nd, 2019</p>\n<ul>\n<li>Update: Replaced the BoldGrid RSS feed widget on the dashboard with one in the updated library package.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.0.3</h4>\n<p>Release date: May 21st, 2019</p>\n<ul>\n<li>Bug fix: Fixing \"Call to undefined method getAttribute\" error.</li>\n<li>Bug fix: Replacing deprecated filter on login: login<em>headertitle / login</em>headertext.</li>\n</ul>\n<h4>2.0.2</h4>\n<p>Release date: Apr 23nd, 2019</p>\n<ul>\n<li>Bug fix: Fixing usage of php\'s empty function for php < 5.5</li>\n</ul>\n<h4>2.0.1</h4>\n<p>Release date: Apr 19th, 2019</p>\n<ul>\n<li>Bug fix: Fixing class property declaration for php < 5.6</li>\n</ul>\n<h4>2.0.0</h4>\n<p>Release date: Apr 16th, 2019</p>\n<ul>\n<li>Update: Made translation ready. Text domain is boldgrid-inspirations.</li>\n<li>Update: Inspirations process with full screen mode and design updates.</li>\n<li>New feature: Inspirations dashboard.</li>\n<li>New feature: German translations added - de_DE.</li>\n</ul>\n<h4>1.6.5</h4>\n<p>Release date: Jan 29th, 2019</p>\n<ul>\n<li>Bug fix: Pages fail to install on Pages > Add New.</li>\n</ul>\n<h4>1.6.4</h4>\n<p>Release date: Dec 5th, 2018</p>\n<ul>\n<li>Bug fix: Unable to save \"boldgrid<em>menu</em>option\" on settings page.</li>\n<li>Bug fix: Fixed updating plugin via ajax.</li>\n</ul>\n<h4>1.6.3</h4>\n<p>Release date: Dec 4th, 2018</p>\n<ul>\n<li>Bug fix: Coin Budget help was not toggling when clicked.</li>\n</ul>\n<h4>1.6.2</h4>\n<p>Release date: Nov 26th, 2018</p>\n<ul>\n<li>Bug fix: JIRA BGINSP-33 Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.</li>\n</ul>\n<h4>1.6.1</h4>\n<p>Release date: Nov 20th, 2018</p>\n<ul>\n<li>Update: JIRA BGCONN-20 Removed update settings; have been moved to the BoldGrid Library packages.</li>\n<li>Bug fix: JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.</li>\n<li>Bug fix: BoldGrid Connect Search / WP 5.0 fix.</li>\n<li>Bug fix: Attribution page not being rebuilt / WP 5.0 fix.</li>\n<li>Bug fix: BoldGrid Connect Search in the Customizer / WP 5.0 fix.</li>\n<li>Bug fix: Recommended image sizes not working as expected.</li>\n</ul>\n<h4>1.6.0</h4>\n<ul>\n<li>Update: Updated BoldGrid library to version 2.4.2.</li>\n<li>New feature: JIRA BGINSP-24 Log data when there may be a connection or Ajax error.</li>\n</ul>\n<h4>1.5.8</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-16 Warnings and notices within inspiration w/ Crio theme</li>\n<li>Bug fix: JIRA BGINSP-23 Fixed issue: Connect Search may load with connection notice.</li>\n</ul>\n<h4>1.5.7</h4>\n<ul>\n<li>Update: Updated to library version 2.3.5.</li>\n</ul>\n<h4>1.5.6</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-14 Fatal in PHP >=7.1.0 when creating internal preview builds.</li>\n<li>Bug fix: JIRA WPB-3767 Prevent invalid API calls for check-version.</li>\n<li>Update: JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.</li>\n<li>Update: JIRA WPB-3730 Updated library dependency to ^2.0.0.</li>\n<li>Update: JIRA BGINSP-3 Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.</li>\n<li>Update: JIRA WPB-3684 Updated composer.json, due to package changes.</li>\n<li>New feature: JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.</li>\n</ul>\n<h4>1.5.5</h4>\n<ul>\n<li>Bug fix: JIRA BGSTAGE-32 Fixed staging plugin install.</li>\n</ul>\n<h4>1.5.4</h4>\n<ul>\n<li>Update: JIRA BGINSP-4 Removed admin notice recommending plugin installations.</li>\n</ul>\n<h4>1.5.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3643 Ensure that deployment does not install new wporg plugins if old ones are installed.</li>\n</ul>\n<h4>1.5.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3587 Menu assignment after deployment broken in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3570 Inspirations Select button misplaced in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3593 Changes require to help Staging support new Customizer scheduler.</li>\n</ul>\n<h4>1.5.1</h4>\n<ul>\n<li>Update: Updates to library.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.11</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3336 All and Default categories do not align.</li>\n<li>Bug fix: JIRA WPB-3337 On a fresh install, Pages - New From GridBlocks fails.</li>\n<li>Bug fix: JIRA WPB-3333 Image search only searching one provider instead of all.</li>\n<li>Bug fix: JIRA WPB-3346 Edit Image button not working for attachment.</li>\n<li>Bug fix: JIRA WPB-3387 Loading GridBlocks just spins.</li>\n<li>Update: JIRA WPB-3352 Purchase coins through BoldGrid Central.</li>\n<li>Update: JIRA WPB-3355 Add data-image-url attribute.</li>\n<li>Update: JIRA WPB-3382 More descriptive creative commons icon.</li>\n<li>Update: JIRA WPB-3384 Add License details to attachment details.</li>\n<li>Update: JIRA WPB-3383 Filter out boldgrid-gridblock-set-preview-page.</li>\n</ul>\n<h4>1.4.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3318 When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.</li>\n<li>Bug fix: JIRA WPB-3312 Ensure activation of preferred form plugin. Added filter for preferred slug.</li>\n<li>Bug fix: JIRA WPB-3317 New page from GridBlocks not working.</li>\n<li>Update: JIRA WPB-3252 Disable \'default\' category and configure \'showcase\'.</li>\n<li>Bug fix: JIRA WPB-3332 New from gridblocks button not showing.</li>\n</ul>\n<h4>1.4.8</h4>\n<ul>\n<li>New feature: JIRA WPB-3200 Added WPForms support.</li>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n<li>Update: JIRA WPB-3296 Add Inspirations as first menu item child.</li>\n<li>Bug Fix: JIRA WPB-3274 Plugins > Add New Updates fail in modals.</li>\n<li>New feature: JIRA WPB-3293 Resize images during deployment vs imgr server.</li>\n</ul>\n<h4>1.4.7</h4>\n<ul>\n<li>Update: JIRA WPB-3243 Change feedback admin notice display frequency.</li>\n<li>Update: JIRA WPB-3264 Adding twitch social media option.</li>\n<li>New Feature: Added BoldGrid Library to plugin.</li>\n</ul>\n<h4>1.4.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3179 Gradient style being lost during normal deployment.</li>\n<li>Bug fix: JIRA WPB-3180 Open WordPress/BoldGrid links in attribution page in new tab.</li>\n</ul>\n<h4>1.4.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n<li>Bug fix: JIRA WPB-3162 Fixed issue creating .htaccess file in deployment.</li>\n<li>Bug fix: JIRA WPB-3171 As an author, when installing a site I do not want background images to be processed.</li>\n<li>Bug fix: JIRA WPB-3176 Background gradient / url bug during deplyment.</li>\n</ul>\n<h4>1.4.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Bug fix: JIRA WPB-3141 Fixed invalid updates for BoldGrid Prime theme.</li>\n<li>Bug fix: JIRA WPB-3158 Deployment\'s gallery updates are not saved.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3106 As an Author, I can set background images for elements.</li>\n<li>New feature: JIRA WPB-3095 Update generic builds to display per theme channel.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2745 Fixed upgrade notices displaying when activation version was not recorded.</li>\n<li>Update: JIRA WPB-3019 Updating attribution link creation.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>New feature: JIRA WPB-3044 Automatically get Unsplash attribution.</li>\n<li>Update: JIRA WPB-3043 Updating plugin description.</li>\n</ul>\n<h4>1.4.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3232 Deploy Staging menu item missing.</li>\n<li>Bug fix: JIRA WPB-3233 BoldGrid Connect Search missing from new image widget.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Update: JIRA WPB-2936 Updating YouTube videos for BoldGrid Dashboard\'s new release.</li>\n<li>Bug fix: JIRA WPB-2927 Social media menu disappears.</li>\n<li>Update: JIRA WPB-2949 Configure blog using categories.</li>\n<li>Bug fix: JIRA WPB-2950 Added max height for reseller logos on login page.</li>\n<li>Bug fix: JIRA WPB-2925 Sidebar widgets don\'t match between preview and installed site.</li>\n<li>Bug fix: JIRA WPB-2951 Images in staging posts not being downloaded.</li>\n<li>Bug fix: JIRA WPB-2955 Backwards compatibility - maps taking up 200px empty space.</li>\n<li>Bug fix: JIRA WPB-2984 Attribution page 404.</li>\n</ul>\n<h4>1.3.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n<li>Bug fix: JIRA WPB-2916 Inspirations deploy fatal error if an old forked plugin had the original installed.</li>\n<li>Bug fix: JIRA WPB-2905 If installing via Author, do not update pages with survey data.</li>\n<li>Bug fix: JIRA WPB-2910 Unterminated entity reference bug.</li>\n<li>Update: JIRA WPB-2913 Validate email address in survey.</li>\n<li>Bug fix: JIRA WPB-2404 iframe timeout in step 2 of Inspirations.</li>\n<li>Bug fix: JIRA WPB-2173 Error deleting image and redownloading.</li>\n<li>Bug fix: JIRA WPB-2635 Start over staging affecting active site.</li>\n<li>Bug fix: JIRA WPB-2493 Publish private posts during staging deployment.</li>\n<li>Bug fix: JIRA WPB-2796 Social media urls end in /username, go to 404s.</li>\n</ul>\n<h4>1.3.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Update: JIRA WPB-2900 Update verbiage of build coin cost.</li>\n<li>Bug fix: JIRA WPB-2901 Scroll bars not visible on preview iframe in Chrome.</li>\n<li>Bug fix: Removing CTA hooks.</li>\n</ul>\n<h4>1.3.7</h4>\n<ul>\n<li>Update: JIRA WPB-2819 Use switch instead of checkbox for Demo.</li>\n<li>Bug fix: JIRA WPB-2780 Theme screenshots opening directly, rather than within gallery.</li>\n<li>Update: JIRA WPB-2825 Adjust do not display formatting.</li>\n<li>Update: JIRA WPB-2829 Updating hook to resolve BoldGrid SEO plugin conflicts.</li>\n<li>Update: JIRA WPB-2837 Remove loading image after selecting theme in Gallery.</li>\n<li>Update: JIRA WPB-2839 Minor verbiage change for Add a blog.</li>\n<li>Update: JIRA WPB-2785 Entering words with apostrophe in it for Site title displays with a Backslash.</li>\n<li>Bug fix: JIRA WPB-2848 Customize link takes users back to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2527 \'New from GridBlocks\' preview page appearing in cart.</li>\n<li>Bug fix: JIRA WPB-2862 Survey, invalid argument supplied for foreach.</li>\n<li>Bug fix: JIRA WPB-2601 Inspirations Internet Explorer/ Stuck on loading themes.</li>\n<li>Bug fix: JIRA WPB-2854 Downloading Image spinner never stops spinning.</li>\n</ul>\n<h4>1.3.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2772 PHP warnings on deploy in WordPress 4.3.7.</li>\n<li>Bug fix: JIRA WPB-2766 Plesk and WP-CLI were not getting private repo updates.</li>\n<li>Update: JIRA WPB-2763 Update email and address on Contact Us page.</li>\n<li>Update: JIRA WPB-2764 Remove option to add a map.</li>\n<li>Update: JIRA WPB-2765 Allow iframes for preview builds.</li>\n<li>New feature: JIRA WPB-2771 Update footer-company-details widget with survey data.</li>\n<li>New feature: JIRA WPB-2777 Add an Install sample blog checkbox.</li>\n<li>New feature: JIRA WPB-2778 Setup a blog during deployment.</li>\n<li>Bug fix: JIRA WPB-2792 Staged posts (private posts) are trashed when starting over active site.</li>\n<li>Update: JIRA WPB-2800 Ensure \'Install a blog\' works with Staging.</li>\n<li>Update: JIRA WPB-2801 Remove milestones classes.</li>\n<li>Bug fix: JIRA WPB-2779 Survey not working with Staging.</li>\n<li>Update: JIRA WPB-2805 Preview builds w & w/o blogs.</li>\n<li>New feature: JIRA WPB-2806 Add filter for Inspirations configs.</li>\n<li>Bug fix: JIRA WPB-2808 Do not request generic builds when requesting blog as well.</li>\n</ul>\n<h4>1.3.5</h4>\n<ul>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Update: JIRA WPB-2376 Filter the bgtfw contact blocks.</li>\n<li>Update: JIRA WPB-2476 Update case of Company name.</li>\n<li>Update: JIRA WPB-2747 Update Add a map verbiage.</li>\n<li>Update: JIRA WPB-2749 Add a map to my Contact page.</li>\n<li>Bug fix: JIRA WPB-2658 Fix spacing issues atop Inspirations.</li>\n<li>Bug fix: JIRA WPB-2751 Show all in the smaller view of inspirations doesn\'t work anymore.</li>\n<li>Bug fix: JIRA WPB-2757 Apostrophe and other strange characters installed via Inspirations.</li>\n<li>Bug fix: JIRA WPB-2759 DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.</li>\n</ul>\n<h4>1.3.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2696 Remove placeholders from survey.</li>\n<li>New feature: JIRA WPB-2697 Update phone numbers in widgets.</li>\n<li>New feature: JIRA WPB-2699 Use phone number entered during survey.</li>\n<li>Update: JIRA WPB-2704 Adjust format of how social media icons are saved.</li>\n<li>New feature: JIRA WPB-2705 Use survey social media items when creating menu.</li>\n<li>Update: JIRA WPB-2711 Show optional message in survey.</li>\n<li>Update: JIRA WPB-2712 Have plus sign toggle more social icons.</li>\n<li>Update: JIRA WPB-2723 Update phone in pages.</li>\n</ul>\n<h4>1.3.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2627 Back / next buttons should not be clickable.</li>\n<li>Bug fix: JIRA WPB-2625 Behavior of last image\'s next button in Inspirations.</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Update: JIRA WPB-2582 Always show arrows in Inspirations gallery.</li>\n<li>Update: JIRA WPB-2583 Ensure first letter in theme\'s title attribute is capitalized.</li>\n<li>Update: JIRA WPB-2599 Add placeholder for 4th step to Inspirations.</li>\n<li>Update: JIRA WPB-2551 Duplicate images.</li>\n<li>New feature: JIRA WPB-2603 Add initial version of survey.</li>\n<li>Bug fix: JIRA WPB-2622 Inspirations - Step 4 - Go back button installs site.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n<li>Bug fix: JIRA WPB-2539 Fix possible duplicate connection issue notice from ajax.js call.</li>\n<li>Bug fix: JIRA WPB-2558 Don\'t display feedback widget if user hasn\'t entered their key.</li>\n<li>Bug fix: JIRA WPB-2559 Don\'t allow widgets to drag into welcome box area.</li>\n<li>Bug fix: JIRA WPB-2555 Images in search results flicker.</li>\n<li>Update: JIRA WPB-2563 Convert Attribution page to use custom post type.</li>\n<li>Update: JIRA WPB-2568 Added fancybox and large previews to Inspirations.</li>\n<li>Update: JIRA WPB-2570 Milestone blogname change.</li>\n<li>Update: JIRA WPB-2574 Milestone Social Media Change.</li>\n<li>Update: JIRA WPB-2578 Milestone Contact Info Footer Change.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2544 Disable \'Install\' button after clicking it.</li>\n</ul>\n<h4>1.2.13</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2531 Javascript error checking needed for mine count.</li>\n</ul>\n<h4>1.2.12</h4>\n<ul>\n<li>Update: JIRA WPB-2472 Added update notice for 1.3.</li>\n<li>Bug fix: JIRA WPB-2486 Incorrect page count on All Pages.</li>\n<li>Bug fix: JIRA WPB-2467 With staging disabled, Customize goes to \"Change Themes\".</li>\n<li>Update: JIRA WPB-2488 Remove \'Permanently delete pages instead of sending to trash\'.</li>\n<li>Update: JIRA WPB-2490 Move default option to \'install as staging\'.</li>\n<li>Update: JIRA WPB-2491 Add \'Customize > Active Theme\' navigation to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2496 Require comment text in feedback form.</li>\n<li>Update: JIRA WPB-2229 Update error reporting when purchasing images.</li>\n<li>Update: JIRA WPB-2498 Change \'Company Name\' to theme name.</li>\n<li>Update: JIRA WPB-2497 Add new dashboard videos.</li>\n<li>Bug fix: JIRA WPB-2376 \'No search results\' method is not cleared in BGCS.</li>\n</ul>\n<h4>1.2.11</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2468 Switching between boldgrid admin menu and standard wp menu no longer works.</li>\n<li>Bug fix: JIRA WPB-2477 If you have an existing site non BG, no route for staging exists.</li>\n</ul>\n<h4>1.2.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2446 Fixed missing build id passed on site install.</li>\n<li>Bug fix: JIRA WPB-2426 Insert Gridblock button is missing.</li>\n<li>Bug fix: JIRA WPB-2443 When starting over, I get a blank page.</li>\n<li>Bug fix: JIRA WBP-2445 Inspirations is not fetching cached themes.</li>\n<li>Update: JIRA WPB-2458 Update \'Recommended\' verbiage in last step of Inspirations.</li>\n</ul>\n<h4>1.2.9</h4>\n<ul>\n<li>Misc: JIRA WPB-2420 Added EOF line breaks.</li>\n<li>Bug fix: JIRA WPB-2387 Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.</li>\n<li>Bug fix: JIRA WPB-2324 Attribution should not show in 404 sitemap.</li>\n<li>Bug fix: JIRA WPB-2403 No plugins recommended still showing notice.</li>\n<li>Update: JIRA WPB-2416 Text changes for confirmation section of Inspirations.</li>\n<li>Update: JIRA WPB-2417 Add additional text to deployment success page for staging.</li>\n<li>Bug fix: JIRA WPB-2421 Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...</li>\n<li>Bug fix: JIRA WPB-2112 BoldGrid Connect Search missing for galleries.</li>\n<li>Bug fix: JIRA WPB-2422 Fixed CSS Loading graphic animation in chrome to display properly.</li>\n<li>Bug fix: JIRA WPB-2401 Gallery not displaying correctly in Chrome && FF.</li>\n<li>Bug fix: JIRA WPB-2423 Trying to get property of non-object in ...stock-photography.php.</li>\n</ul>\n<h4>1.2.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2398 Error requesting free key.</li>\n<li>Bug fix: JIRA WPB-2399 Only show feedback widget to admins.</li>\n</ul>\n<h4>1.2.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2389 Fixed saving BoldGrid Settings.</li>\n<li>Bug fix: JIRA WPB-2388 Removed duplicate boldgrid_activate().</li>\n<li>Update: JIRA WPB-2390 Update verbiage for inspirations install success.</li>\n<li>Bug fix: JIRA WPB-2391 Hide BoldGrid Welcome Panel if key isn\'t entered yet.</li>\n<li>Bug fix: JIRA WPB-2392 If key is less than 32 char don\'t make call to validate.</li>\n<li>Bug fix: JIRA WPB-2393 Error messages should be removed when resubmitting keys.</li>\n<li>Bug fix: JIRA WPB-2394 Cursor for show/hide log should be a pointer.</li>\n<li>Update: JIRA WPB-2395 Update login page styling.</li>\n<li>Bug fix: JIRA WPB-2396 Remove staging from recommended plugin notices.</li>\n<li>Bug fix: JIRA WPB-2327 Check if framework is handling plugin recommendations before recommending.</li>\n</ul>\n<h4>1.2.6</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Bug fix: JIRA WPB-2248 Removed \'New From GridBlocks\' button on edit submission page.</li>\n<li>Bug fix: JIRA WPB-2332 Reset scroll position on step 2 of Inspirations to top.</li>\n<li>Bug fix: JIRA WPB-2339 Remove notices from Inspirations page.</li>\n<li>Update: JIRA WPB-2208 Removed tutorials from Inspirations.</li>\n<li>Update: JIRA WPB-2359 Order \'Category Filter\' by category display order.</li>\n<li>Update: JIRA WPB-2360 Sort themes by category and then order within category.</li>\n<li>Update: JIRA WPB-2368 Read version constant from plugin file.</li>\n<li>Update: JIRA WPB-2361 Add BoldGrid Connect Search to Editor\'s background image tool.</li>\n<li>Update: JIRA WPB-2354 Preview button needs to always be visible in mobile view.</li>\n<li>Update: JIRA WPB-2355 Remove extraneous \'Preview\' button.</li>\n<li>Bug fix: JIRA WPB-2364 Inspirations not respecting theme release channel.</li>\n<li>Bug fix: JIRA WPB-2370 Color in screenshot does not match preview.</li>\n<li>Bug fix: JIRA WPB-2373 Duplicate themes in Inspirations.</li>\n<li>Bug fix: JIRA WPB-2379 Wrong budget passed when going form step 2 to step 1.</li>\n<li>Update: JIRA WPB-2380 Remove references to tutorials in deployment congrats message.</li>\n<li>Bug fix: JIRA WPB-2383 Image Search tab appears when clicking \'Add GridBlock\'.</li>\n</ul>\n<h4>1.2.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2325 Added wrapper to handle mb<em>convert</em>encoding() if mbstring is not loaded.</li>\n<li>Bug fix: JIRA WPB-2313 Disabled GridBlocks in network admin pages.</li>\n<li>New feature: JIRA WPB-2268 Changed to resized preview screenshots for Inspirations Design First concept.</li>\n<li>New feature: JIRA WPB-2287 Adjust device preview buttons in step 2 to behave like those in editor.</li>\n<li>New feature: JIRA WPB-2291 Auto install staging in final step if user chooses staging.</li>\n<li>Update: JIRA WPB-2290 Changed \'Install\' button to \'Next\'.</li>\n<li>Bug fix: JIRA WPB-2289 Continuously clicking category in step 1 shuffles themes.</li>\n<li>Update: JIRA WPB-2267 Added message to Inspirations when no generic themes are available.</li>\n<li>Update: JIRA WPB-2315 Added error handling for malformed ajax results for call to /api/build/get-generic.</li>\n<li>Update: JIRA WPB-2316 Add error handling for failures to fetch categories.</li>\n<li>Update: JIRA WPB-2317 Add error handling for failures to fetch pagesets.</li>\n<li>Update: JIRA WPB-2319 Check user capabilities before prompting for api key.</li>\n<li>Update: JIRA WPB-2320 Ensure user has permission to edit page before allowing download<em>and</em>insert<em>into</em>page.</li>\n<li>Update: JIRA WPB-2322 Sanitize user feedback before adding to options table.</li>\n<li>Update: JIRA WPB-2323 Allow admin notices to be dismissed per user.</li>\n<li>Update: JIRA WPB-2326 Update \'update\' class to utilize Admin Notices class.</li>\n<li>Update: JIRA WPB-2327 Check user capabilities before showing admin notices.</li>\n<li>Update: JIRA WPB-2331 Update confirmation messages.</li>\n</ul>\n<h4>1.2.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2269 Typo fix in Boldgrid<em>Inspirations</em>Dependency<em>Plugins::print</em>uninstalled_plugins().</li>\n<li>Bug fix: JIRA WPB-2270 New From GridBlocks became unavailable.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>New feature: JIRA WPB-2172 For preview generic builds, added an option for identification for purges, etc.</li>\n<li>Bug fix: JIRA WPB-2263 For preview sites under multisite, set the admin email address using the network admin email address.</li>\n<li>Bug fix: JIRA WPB-2223 Reworked API key validation and connection issue notices, formatting.</li>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-2150 Moved API methods to a new class, formatting, and phpcs rework.</li>\n<li>Bug fix: JIRA WPB-2224 Hide the email address field when widget is loaded.</li>\n<li>Bug fix: JIRA WPB-2225 Fixed jQuery Migrate deprecated warning.</li>\n<li>Update: JIRA WPB-2245 Changed feed to pull from dashboard tag on blog.</li>\n<li>Bug fix: JIRA WPB-2265 Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.</li>\n<li>Bug fix: JIRA WBP-2236 Errors everywhere when logging in as an Editor.</li>\n<li>Bug fix: JIRA WPB-2234 Add current<em>user</em>can checks to Boldgrid<em>Inspirations->set</em>api<em>key</em>callback().</li>\n<li>Bug fix: JIRA WPB-2237 Limit ajax requests by user.</li>\n<li>Bug fix: JIRA WPB-2240 Limit printing of configs in head.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to the tutorials page.</li>\n<li>Bug fix: JIRA WPB-2184 In PHP 5.2, deactivate and die properly.</li>\n<li>New feature: Added BoldGrid news widget to dashboard.</li>\n<li>Bug fix: JIRA WPB-1994 Fixed issue with WP Theme Editor not being available.</li>\n<li>New feature: Added BoldGrid Feedback widget.</li>\n<li>Bug fix: JIRA WPB-2169 Connect Search defaults to smallest image size when no recommended sizes available.</li>\n<li>Bug fix: JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2160 New From GridBlocks, multiple pages are installed.</li>\n<li>Update: Changed text of getting and entering connect keys.</li>\n<li>Security: JIRA WPB-2151 Disabled autocomplete for API key entry fields.</li>\n<li>Bug fix: JIRA WPB-2145 Fixing issue with theme screenshots on Chrome Ubuntu.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2119 For asset downloads, when Imagick is loaded, set the thread limit to 1.</li>\n<li>Bug fix: JIRA WPB-2125 Fixing issue where theme was overwritten without version change.</li>\n<li>Bug fix: JIRA WPB-2104 Go back button hides all themes (Inspirations > Add Theme).</li>\n<li>Bug fix: JIRA WPB-2107 BoldGrid Connect Search overlapping footer (Dashboard > Media).</li>\n<li>Bug fix: JIRA WPB-2109 Session issues when starting over and importing active site.</li>\n<li>Bug fix: JIRA WPB-2116 Changes to the order of images in a gallery are not saving.</li>\n<li>Bug fix: JIRA WPB-2134 Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.</li>\n<li>Bug fix: JIRA WPB-2135 Image not replaced in Page & Post Editor after using Connect Search.</li>\n</ul>\n<h4>1.1.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to Inspirations, so admin notices are displayed at the top.</li>\n<li>Bug fix: JIRA WPB-2041 Fixed BoldGrid theme update check in WordPress 4.6.</li>\n<li>Testing: JIRA WPB-2046 Tested on WordPress 4.5.3.</li>\n<li>New feature: JIRA WPB-599 Added options for plugin and theme auto-updates via WordPress autoupdater.</li>\n<li>Update: JIRA WPB-2008 Deploy class updated to allow for is_generic flag.</li>\n<li>Bug fix: JIRA WPB-1950 Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.</li>\n</ul>\n<h4>1.1.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2032 Fixed issue when activating key. Added nonce to api key form.</li>\n<li>Rework: JIRA WPB-2030 Updated the \"I don\'t have an API key\" section.</li>\n<li>New feature: JIRA WPB-2029 Added TOS box to API key submission form.</li>\n<li>New feature: JIRA WPB-1905 Added capability for auto-updates of boldgrid-inspirations by API response.</li>\n<li>Bug fix: JIRA WPB-2002 Fixed theme update issue where upgrader says is up to date at times.</li>\n<li>Bug fix: JIRA WPB-2006 Pdes and Homepage not installing correctly on Inpirations Theme Only installs.</li>\n</ul>\n<h4>1.1.6</h4>\n<ul>\n<li>New feature: JIRA WPB-1839 Users can now change their theme release channel.</li>\n<li>Security fix: JIRA WPB-1977 Validate nonce for feedback form diagnostic data callback and form submit.</li>\n<li>Bug fix: JIRA WPB-1955 Fatal error: Class \'Boldgrid<em>Staging</em>Plugin\' not found.</li>\n</ul>\n<h4>1.1.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1914 Staged image used on Active page not showing in cart.</li>\n</ul>\n<h4>1.1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1886 Fixed feedback notice being displayed too often (more than a week after submitting).</li>\n<li>New feature: JIRA WPB-1183 Refresh the Library Tab after downloading an image.</li>\n<li>Update: JIRA WPB-1865 Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.</li>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1855 Do not display feedback notice on update or setting pages.</li>\n<li>Bug fix: JIRA WPB-1860 Fixed horizontal line through screenshot in step 2.</li>\n<li>Bug fix: JIRA WPB-1863 Cart does not look for watermarked images used within staged pages.</li>\n<li>Bug fix: JIRA WPB-1891 View / Download of images within receipts not working for images purchased via Staging.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n<li>Bug fix: JIRA WPB-1900 Attribution shows in menu when menu generated using wp<em>page</em>menu.</li>\n</ul>\n<h4>1.1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1824 Fixed order of plugin deactivation and uninstall in Start Over process.</li>\n<li>Bug fix: JIRA WPB-1814 Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.</li>\n<li>Bug fix: JIRA WPB-1823 Fixed display of \"Themes\" H1 and the additional themes bar when choosing active or staging before installing a theme.</li>\n<li>Bug fix: JIRA WPB-1840 Fixing thumbnail presentation in inspirations and add new theme.</li>\n</ul>\n<h4>1.1.2.3</h4>\n<ul>\n<li>Update: Sync version. See version 1.1.1.1.</li>\n</ul>\n<h4>1.1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1833 Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).</li>\n</ul>\n<h4>1.1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1817 BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.</li>\n<li>Rework: JIRA WPB-1541 Removed feedback form bug report diagnostic report items.</li>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n<li>Rework: JIRA WPB-1541 Reworked admin feedback notice.</li>\n<li>Rework: JIRA WPB-1751 Removed analysis processing and optional logging capabilities. Added support for XHProf.</li>\n<li>Bug fix: JIRA WPB-1805 Now adds theme update info on the Customizer Themes page.</li>\n<li>Rework: JIRA WPB-1785 Enabled and reworked image caching for the preview server.</li>\n<li>Rework: JIRA WPB-1751 Reworked analysis processing.</li>\n<li>Update: JIRA WPB-1658 Storing more reliable install data through inspirations.</li>\n<li>Bug fix: JIRA WPB-1787 When not using BoldGrid menu, cart does not dynamically update total page price.</li>\n<li>Update: JIRA WPB-1754 Remove attribution page from search results.</li>\n<li>Bug fix: JIRA WPB-1788 webkit css missing from \'new from gridblocks\'.</li>\n<li>New feature: JIRA WPB-1806 Add \'BoldGrid search\' tab when replacing an image.</li>\n</ul>\n<h4>1.1.1.1</h4>\n<ul>\n<li>Bug Fix: Fixing logo display on login screen.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Bug fix: Fixed analysis include for preview server.</li>\n<li>Bug fix: New From GridBlocks: Asset download issues.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1751 Added analysis processing and optional logging capabilities.</li>\n<li>Bug fix: JIRA WPB-1781 Removed boldgrid<em>dismissed</em>admin_notices from Start Over cleanup.</li>\n<li>New feature: JIRA WPB-1541 Added feedback notice.</li>\n<li>Bug fix: JIRA WPB-1747 New From GridBlocks: For non BoldGrid themes, only load grid css.</li>\n<li>Bug fix: JIRA WPB-1760 New From GridBlocks: Ensure page title shows on preview page.</li>\n<li>Update: JIRA WPB-1779 New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.</li>\n</ul>\n<h4>1.0.12.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1710 Fixed missing device preview tabs on Add New Theme preview modal.</li>\n<li>Bug fix: JIRA WPB-1710 Fixed notice dismissal checking.</li>\n<li>Bug fix: JIRA WPB-1749 On start over, staging menus are not deleted.</li>\n<li>Bug fix: JIRA WPB-1755 Gallery images not showing in cart.</li>\n</ul>\n<h4>1.0.12</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1740 Fixed \"In Menu\" messages in editor when staging plugin is not active, and fixed saving menu selections.</li>\n<li>New feature: JIRA WPB-1726 Added optional feedback for GridBlock Add Page.</li>\n<li>Removed Ft: JIRA WPB-1710 Removed Inspirations Add Pages; replaced by GridBlocks.</li>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>New feature: Don\'t assign footer contact widget if using base pagesets.</li>\n<li>Bug Fix: JIRA WPB-1732 Fixing css issues on login screen (firefox).</li>\n<li>Bug Fix: JIRA WPB-1687 Image search: Title, Caption, Alt Text and Description do not display on new pages.</li>\n</ul>\n<h4>1.0.11</h4>\n<ul>\n<li>New feature: JIRA WPB-1699 Added optional feedback for theme activation.</li>\n<li>New feature: JIRA WPB-1690 Adding BoldGrid themes to All themes install menu.</li>\n<li>Bug fix: JIRA WPB-1686 Limited items loaded in network admin pages.</li>\n<li>Improvement: JIRA WPB-1604 Added a \"Cancel\" link to the \"In Menu\" section.</li>\n<li>Improvement: JIRA WPB-1603 Display menu locations in the editor \"In Menu\" section.</li>\n<li>Bug fix: JIRA WPB-1602 Corrected capitalization of \"None\" under \"In menu\" in the editor.</li>\n<li>Improvement: JIRA WPB-1664 Gets api<em>key and site</em>hash from configs instead of get_option.</li>\n<li>Bug fix: JIRA WPB-1597 Fixing indefined index error</li>\n<li>New feature: JIRA WPB-1649 Added reporting of PHP version and mobile ratio.</li>\n<li>Bug fix: JIRA WPB-1598 \'Mine\' count on \'all pages\' is incorrect.</li>\n<li>Bug fix: JIRA WPB-1647 JS error with easy-attachment-preview-size.js.</li>\n<li>Bug fix: JIRA WPB-1651 When the BG menu is turned off, Appearance link should take you to themes.</li>\n</ul>\n<h4>1.0.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1632 Fixed handling of subcategory<em>id in deploy</em>page_sets.</li>\n<li>New feature: JIRA WPB-1510 Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations</em>Utility).</li>\n<li>Rework: JIRA WPB-1553 Updated require and include statements for standards.</li>\n<li>Bug fix: JIRA WPB-1563 Updated pages in which wp<em>iframe-media</em>upload.css is loaded.</li>\n<li>Bug fix: JIRA WPB-1549 Resolve attribution page missing attribution for several images.png.</li>\n</ul>\n<h4>1.0.9.2</h4>\n<ul>\n<li>Bug fix: Add GridBlock Sets feature disabled.</li>\n</ul>\n<h4>1.0.9.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed support for PHP 5.2 to deactivate plugin.</li>\n<li>Bug fix: Prevent click of links in add<em>new</em>page_selection previews.</li>\n<li>Bug fix: JIRA WPB-1554 Fixed undefined JavaScript variable pagenow for customizer link.</li>\n</ul>\n<h4>1.0.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1554 Fixed theme link in network dashboard nav menu.</li>\n<li>Bug fix: JIRA WPB-1590 Fixed JavaScript error for undefined screen info in network dashboard.</li>\n<li>Bug fix: JIRA WPB-1535 Fixed theme deployment issues.</li>\n<li>New feature: JIRA WPB-1584 Added an opt-out feedback payload delivery system.</li>\n<li>New feature: JIRA WPB-1580 Added optional feedback for customizer_start.</li>\n<li>Bug fix: JIRA WPB-1571 Removed plugin dependency admin notice when editing an attachment (image).</li>\n<li>New feature: JIRA WPB-1579 Added feedback opt-out in BoldGrid Settings, hidden for now.</li>\n<li>Bug fix: JIRA WPB-1575 Addressed an issue causing mismatch color palettes on cached previews</li>\n<li>New feature: JIRA WPB-1514 Add new pages offers page templates to choose from.</li>\n</ul>\n<h4>1.0.8.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed PHP version check condition (<5.3).</li>\n</ul>\n<h4>1.0.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1561 Fixed missing get<em>plugin</em>data on update calls.</li>\n<li>New feature: JIRA WPB-1511 Added dependency plugin notice on editor pages.</li>\n<li>Bug fix: JIRA WPB-1553 Added support for <strong>DIR</strong> in PHP <=5.2.</li>\n<li>Bug fix: JIRA WPB-1371 JSON encoded image data for media download requests.</li>\n<li>New feature: JIRA WPB-1332 Swapping loading GIF to CSS loading image.</li>\n<li>New feature: JIRA WPB-1072 Storing static pages on install</li>\n<li>New feature: JIRA WPB-1539 When deleting a page, remove it from any applicable menus as well.</li>\n<li>New feature JIRA WPB-1542 Manage menu assignment within editor.</li>\n<li>New feature JIRA WPB-1555 Add wp-image-## class to images during deployment.</li>\n<li>New feature JIRA WPB-1557 Add wp-image-## class to images when adding gridblocks.</li>\n<li>Bug fix: JIRA WPB-1506 Theme naming missing in preview.</li>\n<li>Bug fix: JIRA WPB-1443 Extra page listed under \'Mine\'.</li>\n<li>Bug fix: JIRA WPB-1560 Install options not available on preview server</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.6</h4>\n<ul>\n<li>Rework: JIRA WPB-1411 Added more output to the deploy log.</li>\n</ul>\n<h4>1.0.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1462 Fixed position of dependency plugins admin notice. Also limited to Dashboard and plugins page.</li>\n<li>Bug fix: JIRA WPB-1290 Fixing issues with galleries leaving empty spaces</li>\n<li>Bug fix: JIRA WPB-1471 Made deployment plugin installation respect release channel.</li>\n<li>Rework: JIRA WPB-1452 Remove unneeded call to \'boldgrid<em>activate</em>framework\' during deployment.</li>\n<li>Bug fix: JIRA WPB-946 Fixed margin bug on step 2 additional themes.</li>\n<li>Bug fix: JIRA WPB-1384 Increase width of select input on image search modal.</li>\n<li>Bug fix: JIRA WPB-1508 BoldGrid Image search box size is inconsistent.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1442 Fixing inspiration border styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1461 Updating login button styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1411 Added initialization and checks for empty image queues in deployment.</li>\n<li>Bug fix: JIRA WPB-1406 Attribution page still showing in \'All Pages\'.</li>\n<li>Bug fix: JIRA WPB-1451 Active images are showing in Staging attribution page.</li>\n<li>Bug fix: JIRA WPB-1466 Tabs on tutorials page too small at 1035px - 1482px.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n<li>New feature: JIRA WPB-1389 When starting over theme mods are saved with a flag to recompile sass</li>\n<li>Bug fix: JIRA WPB-1420 Content of Attribution page is overwriting page saves.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1395 Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.</li>\n<li>Rework JIRA WPB-1374 Updated activation timestamp to use GMT/UTC.</li>\n<li>Bug fix: JIRA WPB-1377 Reseller option is now set on first call to either the front end or wp_login.</li>\n<li>Bug fix: Adjusted handling for image purchases when errors occur.</li>\n<li>Bug fix: JIRA WPB-1365 Purchase link on editing a page goes to wrong link.</li>\n<li>Bug fix: JIRA WPB-1368 Inspirations step 0 text refers to nonexisting help tabs.</li>\n<li>Rework: JIRA WPB-1378 Adjusted formatting of footer in Dashboard.</li>\n<li>Rework: JIRA WPB-1369 Update minus signs on \'Transaction History\'.</li>\n<li>New feature: JIRA WPB-1379 On the transactions page, show the reseller that processed the credits.</li>\n<li>Bug fix: Count of \'All\' pages inaccurate on \'All pages\'.</li>\n<li>Bug fix: JIRA WPB-1367 Updated link for \'Lost your BoldGrid Connect Key?\'.</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1374 Updated activation timestamp to include timezone in UTC.</li>\n<li>Bug fix: Attribution page shows style tags.</li>\n<li>Bug fix: Strict Standards fix for wp<em>kses</em>allowed_html.</li>\n<li>Bug fix: Fixed incorrect link.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:311:\"<h4>1.3</h4>\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https://www.boldgrid.com/boldgrid-1-3-released/ .</p>\n<h4>1.0.2</h4>\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.</p>\n\";}s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:73207:\"{\"5.7\":{\"2.6.3\":[100,95]},\"5.6.4\":{\"2.6.3\":[100,95]},\"5.6.3\":{\"2.6.3\":[100,95]},\"5.6.2\":{\"2.6.3\":[100,95]},\"5.6.1\":{\"2.6.3\":[100,95]},\"5.6\":{\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.5.5\":{\"2.6.3\":[100,95]},\"5.5.4\":{\"2.6.3\":[100,95]},\"5.5.3\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.5.2\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.5.1\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.5\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4.6\":{\"2.6.3\":[100,95]},\"5.4.5\":{\"2.6.3\":[100,95]},\"5.4.4\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4.3\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4.2\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4.1\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.8\":{\"2.6.3\":[100,95]},\"5.3.7\":{\"2.6.3\":[100,95]},\"5.3.6\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.5\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.4\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.3\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.2\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.1\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.9\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.7\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.6\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.5\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.4\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.2\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.1\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.7\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.6\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.5\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.4\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.3\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.2\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.1\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1\":{\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.9\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.8\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.7\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.6\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.5\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.4\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.3\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.2\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.10\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.1\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.9\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.14\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.13\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.12\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.11\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.10\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.9\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.8\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.10\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.13\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.12\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:5:{s:11:\"inspiration\";s:11:\"Inspiration\";s:13:\"customization\";s:13:\"Customization\";s:5:\"build\";s:5:\"Build\";s:6:\"create\";s:6:\"Create\";s:6:\"design\";s:6:\"Design\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\";s:4:\"high\";s:66:\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\";}s:11:\"new_version\";s:5:\"2.6.3\";s:4:\"name\";s:21:\"BoldGrid Inspirations\";s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:17:\"short_description\";s:135:\"BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.\";s:12:\"last_updated\";s:19:\"2021-06-10 18:01:27\";s:6:\"author\";s:65:\"<a href=\"https://www.boldgrid.com/\" target=\"_blank\">BoldGrid </a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.png\";s:2:\"2x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-256x256.png\";s:3:\"svg\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:148:\"https://api.boldgrid.com/api/open/getAsset?key=355b0ad5e905e1ae767c456b01bba1ae&id=1201345&installed_plugin_version=2.4.4&installed_wp_version=5.6.4\";}s:16:\"boldgrid-gallery\";O:8:\"stdClass\":24:{s:5:\"title\";s:16:\"BoldGrid Gallery\";s:7:\"version\";s:5:\"1.5.1\";s:8:\"asset_id\";i:1118061;s:12:\"release_date\";s:19:\"2020-07-27 20:25:23\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.8\";s:8:\"sections\";a:4:{s:11:\"description\";s:82:\"<p>BoldGrid Gallery is a standalone plugin used for slideshows and galleries.</p>\n\";s:12:\"installation\";s:183:\"<ol>\n<li><p>Upload the entire boldgrid-gallery folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n</ol>\n\";s:9:\"changelog\";s:3079:\"<h4>1.5.1</h4>\n<ul>\n<li>Bug fix: Fix update class.</li>\n<li>Bug fix: Trying to access array offset on value of type bool.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Update: JIRA WPB-3112 Updated wc-gallery: 1.52 => 1.55.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Update: Bump Version.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Update: JIRA WPB-2368 Version constant is now set from plugin file.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2310 Removed broken plugin Settings link. Pending review on WPB-2309.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-1825 Formatting.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2114 Fixed gallery displaying in editor on wordpress 4.6.</li>\n<li>Bug fix: JIRA WPB-2114 Fixing ordering of gallery items.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>New feature: JIRA WPB-2037 Added capability for auto-updates by BoldGrid API response.</li>\n<li>Update: JIRA WPB-2024 Updated wc-gallery: 1.48 => 1.52.</li>\n<li>Misc: Updated editor.js to pass JSHint.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n</ul>\n<h4>1.1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>Bug Fix: JIRA WPB-1646 Fixing Issues where masonry gallery was not WYSIWYG.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>Update: JIRA WPB-1611 Updated wc-gallery: 1.40 => 1.48.</li>\n<li>Rework: JIRA WPB-1617 Updated require and include statements for standards.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Changed <strong>DIR</strong> to dirname( <strong>FILE</strong> ) for PHP <=5.2.</li>\n<li>Misc JIRA WPB-1468 Updated readme.txt for Tested up to: 4.4.1</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:1:\"\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:2163:\"{\"5.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.3.1\":{\"0.4\":[100,12],\"1.0\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.3\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:4:{s:7:\"gallery\";s:7:\"Gallery\";s:6:\"slider\";s:6:\"Slider\";s:9:\"slideshow\";s:9:\"Slideshow\";s:7:\"masonry\";s:7:\"Masonry\";}s:7:\"banners\";a:2:{s:3:\"low\";s:53:\"//repo.boldgrid.com/assets/banner-gallery-772x250.png\";s:4:\"high\";s:54:\"//repo.boldgrid.com/assets/banner-gallery-1544x500.png\";}s:11:\"new_version\";s:5:\"1.5.1\";s:4:\"name\";s:16:\"BoldGrid Gallery\";s:4:\"slug\";s:16:\"boldgrid-gallery\";s:17:\"short_description\";s:74:\"BoldGrid Gallery is a standalone plugin used for slideshows and galleries.\";s:12:\"last_updated\";s:19:\"2020-07-27 20:25:23\";s:6:\"author\";s:67:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com</a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.png\";s:2:\"2x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-256x256.png\";s:3:\"svg\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:117:\"https://api.boldgrid.com/api/open/getAsset?key=355b0ad5e905e1ae767c456b01bba1ae&id=1118061&installed_wp_version=5.6.4\";}}','no'),(329776,'_site_transient_timeout_bg_license_data','1629911285','no'),(329777,'_site_transient_bg_license_data','O:8:\"stdClass\":5:{s:3:\"key\";s:64:\"2JZUaTPXImSOUVw0oz+p0iT8c4NQjWNUbCOOle5oUXDluJIBZh7JovzhzCdeB4U2\";s:6:\"cipher\";s:11:\"AES-128-CBC\";s:2:\"iv\";s:38:\"%87U%C2kP%CD.%C2%7D%97%8F%8F6%AB%17%99\";s:4:\"data\";s:536:\"w/KeRFMUe49+GMx0kuHcstf66/7roOI/KHu7m8uwTMb3oN20tonzQGkGeQ6O3H/Qbn8GuC4x/4xq9oAe0ptZlBB8YQIgSRbhlkrIby4hLemtH1ka/a/nlVaj/aogNmGDK2RMMeVWTr4DPNj5HRaxqjuBVlcj+ajgNElPXx7LSnhCKRZ/ev9/Td1wTRSL2pwEUHicSItgEM4dwQpC2aj3eRBPpzCnXDcohDDHHLteew9gsTu+zFUkjXsBVZB0ouPdv4c+C97eG08eXmrArHnZtXhDlLuS7NvRC5MRN36n5Hws3UUry7qEAPGsLO39rUAJN3zy6Or1IZTYKMRRnvzOcvgSrdWElQLbPR0je66pkLTYESauiPpmgGxO5c95Ll1flbLWV2hck28qHI4nbYq0GsvW61s+r3QKQAtzFtobOOcKu74qGYYWWYT6Fo+KtO+C6LqvZqj3JSH/WLP//EbqFhdfyUM89mRGeijTIUq+kqMuX2THMpwLzVmGWKhb84gjQj0mDzysD5dgYJLB/ScO2w==\";s:7:\"version\";i:2;}','no'),(35820,'weforms_settings','a:4:{s:13:\"email_gateway\";s:9:\"wordpress\";s:6:\"credit\";b:0;s:12:\"email_footer\";b:1;s:9:\"recaptcha\";a:3:{s:3:\"key\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:4:\"type\";s:2:\"v2\";}}','yes'),(35829,'weforms_installed','1603227625','yes'),(35834,'weforms_version','1.4.9','yes'),(21577,'feedback_unread_count','4','yes'),(36046,'boldgrid_api_key','355b0ad5e905e1ae767c456b01bba1ae','no'),(36047,'boldgrid_site_hash','0de51e42444f87ec72400f409b5eba01','no'),(36063,'boldgrid_inspirations_current_version','2.4.4','no'),(36064,'boldgrid_inspirations_redirect','1603267245','yes'),(36881,'boldgrid_inspirations_activated_version','2.4.3','no'),(187,'theme_mods_mapro','a:13:{s:18:\"custom_css_post_id\";i:-1;s:20:\"mapro_page_header_bg\";s:70:\"http://www.purpletulip.ca/wp-content/uploads/2020/04/IMG_0482-Copy.jpg\";s:27:\"mapro_disable_sticky_header\";i:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"background_image\";s:0:\"\";s:17:\"background_preset\";s:6:\"custom\";s:21:\"background_position_x\";s:6:\"center\";s:21:\"background_position_y\";s:3:\"top\";s:15:\"background_size\";s:7:\"contain\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_attachment\";s:5:\"fixed\";s:11:\"custom_logo\";s:0:\"\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1598666992;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-3\";}}}}','yes'),(193,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(190,'current_theme','Twenty Seventeen','yes'),(191,'theme_switched','','yes'),(192,'theme_switched_via_customizer','','yes'),(194,'customize_stashed_theme_mods','a:1:{s:12:\"twentytwenty\";a:3:{s:27:\"nav_menu_locations[primary]\";a:5:{s:15:\"starter_content\";b:1;s:5:\"value\";i:-1;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2020-04-22 03:53:54\";}s:28:\"nav_menu_locations[expanded]\";a:5:{s:15:\"starter_content\";b:1;s:5:\"value\";i:-5;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2020-04-22 03:53:54\";}s:26:\"nav_menu_locations[social]\";a:5:{s:15:\"starter_content\";b:1;s:5:\"value\";i:-9;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2020-04-22 03:53:54\";}}}','no'),(209,'jetpack_available_modules','a:1:{s:5:\"9.0.2\";a:42:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(1589,'boldgrid_backup_in_progress_data','a:1:{s:6:\"status\";s:16:\"Backup complete!\";}','yes'),(1590,'boldgrid_backup_last_backup','1620869963','no'),(1591,'boldgrid_backup_latest_backup','a:34:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:271151675;s:4:\"save\";b:1;s:10:\"total_size\";i:348450005;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:5:\"title\";N;s:11:\"description\";N;s:7:\"ABSPATH\";s:29:\"/home/piyush5/purpletulip.ca/\";s:9:\"backup_id\";s:8:\"c8f739c7\";s:7:\"siteurl\";s:25:\"http://www.purpletulip.ca\";s:9:\"timestamp\";i:1620869317;s:17:\"gateway_interface\";s:7:\"CGI/1.1\";s:9:\"http_host\";s:18:\"www.purpletulip.ca\";s:13:\"php_sapi_name\";s:8:\"cgi-fcgi\";s:9:\"php_uname\";s:109:\"Linux whub59.webhostinghub.com 3.10.0-962.3.2.lve1.5.44.el7.x86_64 #1 SMP Wed Jan 20 04:56:00 EST 2021 x86_64\";s:11:\"php_version\";s:6:\"7.2.34\";s:11:\"server_addr\";s:15:\"209.182.197.192\";s:11:\"server_name\";s:18:\"www.purpletulip.ca\";s:15:\"server_protocol\";s:8:\"HTTP/1.1\";s:15:\"server_software\";s:6:\"Apache\";s:3:\"uid\";i:2575;s:8:\"username\";s:7:\"piyush5\";s:10:\"encrypt_db\";b:0;s:7:\"trigger\";s:11:\"Auto update\";s:8:\"filepath\";s:93:\"/home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20210513-012902.zip\";s:11:\"lastmodunix\";i:1620869960;s:8:\"duration\";s:6:\"645.38\";s:11:\"db_duration\";s:4:\"0.31\";s:11:\"db_filename\";s:33:\"piyush5_wp759.20210513-012837.sql\";s:12:\"mail_success\";b:1;}','yes'),(36160,'boldgrid_backup_history','a:25:{i:0;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1603233130;s:7:\"message\";s:115:\"Backup file created: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20201020-223018.zip.\";}i:1;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1603247160;s:7:\"message\";s:115:\"Backup file created: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20201021-022400.zip.\";}i:2;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1603247161;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20200610-230418.zip\";}i:3;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1603247189;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 2.4.4.\";}i:4;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1603247189;s:7:\"message\";s:58:\"Jetpack by WordPress.com plugin upgraded to version 9.0.2.\";}i:5;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1603247189;s:7:\"message\";s:47:\"Total Upkeep plugin upgraded to version 1.14.6.\";}i:6;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1603247189;s:7:\"message\";s:54:\"Total Upkeep Premium plugin upgraded to version 1.5.4.\";}i:7;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1604004795;s:7:\"message\";s:115:\"Backup file created: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20201029-204943.zip.\";}i:8;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1604004796;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20200829-200505.zip\";}i:9;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1604004803;s:7:\"message\";s:35:\"WordPress updated to version 5.5.1.\";}i:10;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1604093808;s:7:\"message\";s:115:\"Backup file created: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20201030-213527.zip.\";}i:11;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1604093809;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20200829-201646.zip\";}i:12;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1604093811;s:7:\"message\";s:35:\"WordPress updated to version 5.5.2.\";}i:13;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1612391740;s:7:\"message\";s:115:\"Backup file created: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20210203-222451.zip.\";}i:14;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1612392020;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20200901-190959.zip\";}i:15;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1612392091;s:7:\"message\";s:33:\"WordPress updated to version 5.6.\";}i:16;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1614010293;s:7:\"message\";s:115:\"Backup file created: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20210222-155729.zip.\";}i:17;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1614010850;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20201020-223018.zip\";}i:18;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1614010923;s:7:\"message\";s:35:\"WordPress updated to version 5.6.1.\";}i:19;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1618465128;s:7:\"message\";s:115:\"Backup file created: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20210415-052822.zip.\";}i:20;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1618465468;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20201021-022400.zip\";}i:21;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1618465511;s:7:\"message\";s:35:\"WordPress updated to version 5.6.2.\";}i:22;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1620869963;s:7:\"message\";s:115:\"Backup file created: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20210513-012902.zip.\";}i:23;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1620870321;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/piyush5/boldgrid_backup/boldgrid-backup-www.purpletulip.ca-c8f739c7-20201029-204943.zip\";}i:24;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1620870347;s:7:\"message\";s:35:\"WordPress updated to version 5.6.3.\";}}','no'),(1596,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"piyush@purpletulip.ca\";s:7:\"version\";s:5:\"5.6.4\";s:9:\"timestamp\";i:1620870349;}','no'),(414,'_transient_health-check-site-status-result','{\"good\":\"11\",\"recommended\":\"7\",\"critical\":\"2\"}','yes'),(36925,'boldgrid_inspirations_previous_version','2.4.3','no'),(330051,'jetpack_site_products','a:0:{}','yes'),(16435,'theme_mods_twentyseventeen','a:5:{s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:135;s:11:\"page_layout\";s:10:\"one-column\";s:18:\"nav_menu_locations\";a:2:{s:3:\"top\";i:5;s:6:\"social\";i:0;}s:25:\"hide_boldgrid_attribution\";b:0;}','yes'),(16436,'theme_switch_menu_locations','a:0:{}','yes'),(16561,'recently_activated','a:0:{}','yes'),(16874,'stats_cache','a:2:{s:32:\"3530529ea278dd96019a4f8c79a8cc13\";a:1:{i:1629704068;a:1:{i:0;a:4:{s:7:\"post_id\";s:1:\"8\";s:10:\"post_title\";s:14:\"#8 (not found)\";s:14:\"post_permalink\";s:26:\"http://www.purpletulip.ca/\";s:5:\"views\";s:1:\"2\";}}}s:32:\"94db4ca8daa85a460f4686e246b6ba94\";a:1:{i:1629704068;a:0:{}}}','yes'),(16615,'jetpack_log','a:1:{i:0;a:4:{s:4:\"time\";i:1598731626;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}}','no'),(16613,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(16639,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"&H*V(EJ&jAf$M9EwevMk4LwPqYjOzagA.znLxM^nnisz77g#d6l3oh!&Cd91PUITL\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"UhZqCW$i7TsddRrNH8^p5sv^E85euF91.X)V@yp5lWuwYf!OExHhX(LhBB^ptKh(T.1\";}}','yes'),(16643,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:0;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(36926,'boldgrid_backup_environment','a:3:{s:8:\"hostname\";s:24:\"whub59.webhostinghub.com\";s:10:\"phpversion\";s:6:\"7.2.34\";s:9:\"wpversion\";s:5:\"5.6.4\";}','yes'),(16678,'jetpack_active_modules','a:8:{i:0;s:12:\"contact-form\";i:1;s:21:\"enhanced-distribution\";i:2;s:8:\"json-api\";i:3;s:5:\"notes\";i:4;s:7:\"protect\";i:5;s:5:\"stats\";i:6;s:18:\"verification-tools\";i:7;s:21:\"woocommerce-analytics\";}','yes'),(16687,'jetpack_protect_key','535123f4fd750d3a173e8c35747d4815e1bea1d1','no'),(17343,'jetpack_protect_blocked_attempts','3254','no'),(16707,'jetpack_constants_sync_checksum','a:20:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:3297769213;s:14:\"WP_CONTENT_DIR\";i:272091095;s:9:\"FS_METHOD\";i:634125391;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:1646442005;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;s:11:\"PHP_VERSION\";i:1568186345;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:2267546353;s:8:\"WP_DEBUG\";i:734881840;}','yes'),(16708,'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'),(16709,'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'),(16710,'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'),(330422,'_transient_timeout_jetpack_is_single_user','1629903700','no'),(330423,'_transient_jetpack_is_single_user','1','no'),(36062,'boldgrid_asset','a:3:{s:6:\"plugin\";a:0:{}s:5:\"theme\";a:0:{}s:5:\"image\";a:0:{}}','yes'),(36119,'boldgrid_plugin_page_notices','a:2:{i:0;a:4:{s:2:\"id\";s:26:\"bgbkup_database_encryption\";s:8:\"isUnread\";b:0;s:7:\"version\";s:6:\"1.13.0\";s:4:\"page\";s:32:\"boldgrid-backup-premium-features\";}i:1;a:4:{s:2:\"id\";s:26:\"bgbkup_timely_auto_updates\";s:8:\"isUnread\";b:0;s:7:\"version\";s:6:\"1.14.0\";s:4:\"page\";s:32:\"boldgrid-backup-premium-features\";}}','yes'),(36849,'boldgrid_customizer_first_use','2020-10-21 02:19:31','yes'),(320038,'_transient_timeout_jetpack_file_data_9.0.2','1631487293','no'),(320039,'_transient_jetpack_file_data_9.0.2','a:52:{s:32:\"d3576702faeb399eb47ad20f586c3804\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"55409a5f8388b8d33e2350ef80de3ea3\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e914e6d31cb61f5a9ef86e1b9573430e\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:81:\"Let visitors use a WordPress.com, Twitter, Facebook, or Google account to comment\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1b8c61705fb18eb8c8584c9f9cdffd9\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:81:\"Add a customizable contact form to any post or page using the Jetpack Form Block.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:214:\"contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4fca6eb23a793155d69fdb119a094926\";a:14:{s:4:\"name\";s:9:\"Copy Post\";s:11:\"description\";s:77:\"Enable the option to copy entire posts and pages, including tags and settings\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"7.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:15:\"copy, duplicate\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cfdac01e3c3c529f93a8f49edef1f5db\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4b9137ecf507290743735fb1f94535df\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:88:\"Adds options for CSS preprocessor use, disabling the theme\'s CSS, or custom image width.\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"95d75b38d76d2ee1b5b537026eadb8ff\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"822f9ef1281dace3fb7cc420c77d24e0\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:37:\"business, premium, security, complete\";}s:32:\"c167275f926ef0eefaec9a679bd88d34\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"58cbd4585a74829a1c88aa9c295f3993\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d4a35eabc948caefad71a0d3303b95c8\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7b0c670bc3f8209dc83abb8610e23a89\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:74:\"Use the LaTeX markup language to write mathematical equations and formulas\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b00e4e6c109ce6f77b5c83fbaaaead4c\";a:14:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:137:\"Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:150:\"mobile, theme, fast images, fast image, image, lazy, lazy load, lazyload, images, lazy images, thumbnail, image lazy load, lazy loading, load, loading\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8e46c72906c928eca634ac2c8b1bc84f\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2df2264a07aff77e0556121e33349dce\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0337eacae47d30c946cb9fc4e5ece649\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c54bb0a65b39f1316da8632197a88a4e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:118:\"Jetpack’s downtime monitoring will continuously watch your site, and alert you the moment that downtime is detected.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:123:\"monitor, uptime, downtime, monitoring, maintenance, maintenance mode, offline, site is down, site down, down, repair, error\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cc013f4c5480c7bdc1e7edb2f410bf3c\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b3b34928b1e549bb52f866accc0450c5\";a:14:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:154:\"Jetpack’s Site Accelerator loads your site faster by optimizing your images and serving your images and static files from our global network of servers.\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:160:\"site accelerator, accelerate, static, assets, javascript, css, files, performance, cdn, bandwidth, content delivery network, pagespeed, combine js, optimize css\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"714284944f56d6936a40f3309900bc8e\";a:14:{s:4:\"name\";s:9:\"Image CDN\";s:11:\"description\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:171:\"photon, photo cdn, image cdn, speed, compression, resize, responsive images, responsive, content distribution network, optimize, page speed, image optimize, photon jetpack\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"041704e207c4c59eea93e0499c908bff\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"26e6cb3e08a6cfd0811c17e7c633c72c\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:151:\"Enabling brute force protection will prevent bots and hackers from attempting to log in to your website with common username and password combinations.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:173:\"security, jetpack protect, secure, protection, botnet, brute force, protect, login, bot, password, passwords, strong passwords, strong password, wp-login.php,  protect admin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"915a504082f797395713fd01e0e2e713\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:128:\"Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:220:\"facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9243c1a718566213f4eaf3b44cf14b07\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:360:\"related, jetpack related posts, related posts for wordpress, related posts, popular posts, popular, related content, related post, contextual, context, contextual related posts, related articles, similar posts, easy related posts, related page, simple related posts, free related posts, related thumbnails, similar, engagement, yet another related posts plugin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"583e4cda5596ee1b28a19cde33f438be\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:102:\"Help visitors quickly find answers with highly relevant instant search results and powerful filtering.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:110:\"search, elastic, elastic search, elasticsearch, fast search, search results, search performance, google search\";s:12:\"plan_classes\";s:18:\"business, complete\";}s:32:\"15346c1f7f2a5f29d34378774ecfa830\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:37:\"business, premium, security, complete\";}s:32:\"72a0ff4cfae86074a7cdd2dcd432ef11\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:120:\"Add Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:229:\"share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, pocket, social widget, social media\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"bb8c6c190aaec212a7ab6e940165af4d\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:177:\"Shortcodes are WordPress-specific markup that let you add media from popular sites. This feature is no longer necessary as the editor now handles media embeds rather gracefully.\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"1abd31fe07ae4fb0f8bb57dc24592219\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:47:\"Generates shorter links using the wp.me domain.\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cae5f097f8d658e0b0ae50733d7c6476\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e9b8318133b2f95e7906cedb3557a87d\";a:14:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:63:\"Allow users to log in to this site using WordPress.com accounts\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:51:\"sso, single sign on, login, log in, 2fa, two-factor\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"17e66a12031ccf11d8d45ceee0955f05\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"346cf9756e7c1252acecb9a8ca81a21c\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:58:\"Let visitors subscribe to new posts and comments via email\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ca086af79d0d9dccacc934ccff5b4fd7\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"43c24feb7c541c376af93e0251c1a261\";a:14:{s:4:\"name\";s:20:\"Backups and Scanning\";s:11:\"description\";s:100:\"Protect your site with daily or real-time backups and automated virus scanning and threat detection.\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:386:\"backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security\";s:12:\"plan_classes\";s:47:\"personal, business, premium, security, complete\";}s:32:\"b9396d8038fc29140b499098d2294d79\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"afe184082e106c1bdfe1ee844f98aef3\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:101:\"Save on hosting storage and bandwidth costs by streaming fast, ad-free video from our global network.\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:118:\"video, videos, videopress, video gallery, video player, videoplayer, mobile video, vimeo, youtube, html5 video, stream\";s:12:\"plan_classes\";s:37:\"business, premium, security, complete\";}s:32:\"44637d43460370af9a1b31ce3ccec0cd\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"694c105a5c3b659acfcddad220048d08\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:49:\"Provides additional widgets for use on your site.\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"21b59e7bb3fe0784e7525ad11ad8a8f6\";a:14:{s:4:\"name\";s:21:\"WooCommerce Analytics\";s:11:\"description\";s:53:\"Enhanced analytics for WooCommerce and Jetpack users.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"8.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Other, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:69:\"woocommerce, analytics, stats, statistics, tracking, analytics, views\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ae15da72c5802d72f320640bad669561\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:37:\"premium, business, security, complete\";}s:32:\"212a162108f1dc20cc6c768d5b47d4f2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1bb571a95c5de1e6adaf9db8567c039\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cb5d81445061b89d19cb9c7754697a39\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ea0fbbd64080c81a90a784924603588c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5c53fdb3633ba3232f60180116900273\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"40b97d9ce396339d3e8e46b833a045b5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0739df64747f2d02c140f23ce6c19cd8\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"348754bc914ee02c72d9af445627784c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a7b21cc562ee9ffa357bba19701fe45b\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4f84d218792a6efa06ed6feae09c4dd5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(16836,'verification_services_codes','0','yes'),(16800,'post_by_email_address1','NULL','yes'),(16801,'monitor_receive_notifications','1','yes'),(16749,'jetpack_callables_sync_checksum','a:35:{s:18:\"wp_max_upload_size\";i:1819132959;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:581790439;s:26:\"main_network_site_wpcom_id\";i:3205646725;s:8:\"site_url\";i:581790439;s:8:\"home_url\";i:581790439;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:3384158808;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:2113751834;s:10:\"post_types\";i:1483332630;s:18:\"post_type_features\";i:1649157648;s:10:\"shortcodes\";i:2604513830;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:10:\"wp_version\";i:1725009460;s:11:\"get_plugins\";i:1100334188;s:24:\"get_plugins_action_links\";i:2923183575;s:14:\"active_modules\";i:4083673817;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:1426873501;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:267455992;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";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:13:\"theme_support\";i:265554645;}','no'),(16750,'jpsq_sync_checkout','0:0','no'),(16754,'wpcom_publish_posts_with_markdown','1','yes'),(16757,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:1018184316;s:13:\"update_themes\";i:2423926263;s:11:\"update_core\";i:1385428176;}','yes'),(16772,'jetpack_next_sync_time_full-sync-enqueue','1629902777','yes'),(16776,'jp_sync_lock_full_sync','1629902791.7529','yes'),(330052,'jetpack_active_plan','a:10:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:0:\"\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:11:\"license_key\";s:0:\"\";s:8:\"features\";a:2:{s:6:\"active\";a:7:{i:0;s:17:\"security-settings\";i:1;s:12:\"advanced-seo\";i:2;s:18:\"upload-video-files\";i:3;s:7:\"akismet\";i:4;s:14:\"send-a-message\";i:5;s:15:\"whatsapp-button\";i:6;s:15:\"social-previews\";}s:9:\"available\";a:26:{s:16:\"google-analytics\";a:10:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";}s:17:\"security-settings\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:12:\"advanced-seo\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:18:\"upload-video-files\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:13:\"video-hosting\";a:10:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";}s:15:\"wordads-jetpack\";a:10:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";}s:7:\"akismet\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:18:\"vaultpress-backups\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:15:\"simple-payments\";a:10:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:14:\"send-a-message\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:15:\"whatsapp-button\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:15:\"social-previews\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:9:\"donations\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/audio\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:25:\"premium-content/container\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:7:\"support\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}}}}','yes'),(330779,'_site_transient_boldgrid_backup_premium_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:64:\"Total Upkeep Premium &ndash; WordPress Backup Plugin plus Restor\";s:7:\"version\";s:5:\"1.5.9\";s:8:\"asset_id\";i:1192077;s:12:\"release_date\";s:19:\"2021-04-29 14:47:06\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.8\";s:8:\"sections\";s:4823:\"{\"description\":\"<p>Premium extension for the Total Upkeep plugin.<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP 5.4 or higher<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire boldgrid-backup-premium folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.5.9<\\/h4>\\n\\n<p>Release date: April 29th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Fixed nonce for restoring single files.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.8<\\/h4>\\n\\n<p>Release date: March 11th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies, including aws-php-sdk from version 2 to 3.<\\/li>\\n<li>Update: Adding google-drive-download.og<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.7<\\/h4>\\n\\n<p>Release date: February 16th, 2021<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed confings type in update class.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.6<\\/h4>\\n\\n<p>Release date: December 8th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Various JQMIGRATE warnings fixed.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.5<\\/h4>\\n\\n<p>Release date: December 2nd, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed invalid nonce when downloading Amazon S3 backups.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<p>Release date: October 15th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed issue with installing plugins.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<p>Release date: October 13th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Added additional logging for Google Drive.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<p>Release date: August 12th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated Timely Auto Updates to work with the new WordPress 5.5+ Auto Update UI.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<p>Release date: July 7th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Auto Update Translation filter causes fatal error with JetPack active <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-backup-premium\\/issues\\/50\\\">#50<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.5.0<\\/h4>\\n\\n<p>Release date: July 7th, 2020<\\/p>\\n\\n<ul>\\n<li>New Feature: Added Timely Auto Updates.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0<\\/h4>\\n\\n<p>Release date: May 19th, 2020<\\/p>\\n\\n<ul>\\n<li>New feature: Google drive - shared drive support.<\\/li>\\n<li>New feature: Google drive - upload to any folder by using a folder id.<\\/li>\\n<li>Bug fix: Cleaned up Amazon libraries loaded to prevent conflict with W3TC.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.3<\\/h4>\\n\\n<p>Release date: February 19th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Cannot save Google Drive on settings page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.2<\\/h4>\\n\\n<p>Release date: February 18th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Allow Google Drive settings to be reset, and which allows for reauthorization.<\\/li>\\n<li>Update: Show error messages when validating Google Drive.<\\/li>\\n<li>Bug fix: Error 403: Daily Limit for Unauthenticated Use Exceeded.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/h4>\\n\\n<p>Release date: December 13th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed filtering of archive attributes.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.0<\\/h4>\\n\\n<p>Release data: November 21th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Renamed plugin from \\\"BoldGrid Backup Premium\\\" to \\\"Total Upkeep Premium\\\".<\\/li>\\n<li>New feature: Added database dump file encryption.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<p>Release date: October 1st, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fix bucket errors on archive details page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.0<\\/h4>\\n\\n<p>Release date: October 1st, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: DreamObjects support.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<p>Release date: May 21th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Google Drive attempting to upload archive that does not exist.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<p>Release date: May 14th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Themes autoupdated not showing in Tools > History.<\\/li>\\n<li>Bug fix: Incorrect theme version listed in history during autoupdate.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0<\\/h4>\\n\\n<p>Release date: Feb 14th, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: Google Drive support.<\\/li>\\n<li>Update: Composer libraries updated.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed ob_flush warning with S3.<\\/li>\\n<li>Bug fix: Fixed error: Invalid argument supplied for foreach().<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: October 25th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed handling of hook parameter on non-bulk plugin upgrades.<\\/li>\\n<li>Bug fix: Fatal error: Uncaught Error: Call to undefined function wp<em>generate<\\/em>password.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: April 11th, 2017<\\/p>\\n\\n<ul>\\n<li>Initial release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"<h4>1.3.0<\\/h4>\\n\\n<p>BoldGrid Backup Premium has been renamed to Total Upkeep Premium.  Different name with the same great features.<\\/p>\\n\"}\";s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:45643:\"{\"5.7\":{\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.6.3\":{\"1.5.9\":[100,95]},\"5.6.2\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.6.1\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.6\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.5.4\":{\"1.5.9\":[100,95]},\"5.5.3\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.5.2\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.5.1\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.5\":{\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4.5\":{\"1.5.9\":[100,95]},\"5.4.4\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4.3\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4.2\":{\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4.1\":{\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4\":{\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.7\":{\"1.5.9\":[100,95]},\"5.3.6\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.5\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.4\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.3\":{\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.2\":{\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.1\":{\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.9\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.8\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.7\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.6\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.5\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.4\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.3\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.2\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.10\":{\"1.5.9\":[100,95]},\"5.2.1\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.8\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.7\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.6\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.5\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.4\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.3\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.2\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.1\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.9\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.8\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.7\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.6\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.5\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.4\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.3\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.2\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.10\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.1\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.9\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.8\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.6\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.5\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.4\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.3\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.2\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.14\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.13\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.12\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.11\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.10\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.1\":{\"1.0.0\":[100,12],\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.9\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.8\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.6\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.10\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.12\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.11\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.10\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.12\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.11\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.10\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:143:\"{\"backup\":\"Backup\",\"cloud backup\":\"Cloud backup\",\"database backup\":\"Database backup\",\"restore\":\"Restore\",\"wordpress backup\":\"Wordpress backup\"}\";s:7:\"banners\";s:125:\"{\"low\":\"//repo.boldgrid.com/assets/banner-backup-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-backup-1544x500.png\"}\";}}s:7:\"updated\";i:1629894988;}','no'),(330930,'_site_transient_timeout_boldgrid_api_data','1629931573','no'),(330931,'_site_transient_boldgrid_api_data','O:8:\"stdClass\":5:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":19:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"2.6.3\";s:8:\"asset_id\";i:1201345;s:12:\"release_date\";s:19:\"2021-06-10 18:01:27\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.8\";s:8:\"sections\";s:48463:\"{\"description\":\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.<\\/p>\\n\\n<p>The first phase is Inspiration; the guided tool creates your base website.  If you already have a website, then you can skip this step.<\\/p>\\n\\n<p>The second phase is Customization; tools to transform your website into your vision.<\\/p>\\n\",\"installation\":\"<ol>\\n<li><p>Upload the entire boldgrid-inspirations folder to the \\/wp-content\\/plugins\\/ directory.<\\/p><\\/li>\\n<li><p>Activate the plugin through the Plugins menu in WordPress.<\\/p><\\/li>\\n<li><p>You will find the Inspirations menu in your WordPress Dashboard \\/ admin panel.<\\/p><\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>2.6.3<\\/h4>\\n\\n<p>Release date: June 10th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Updated the way blogs are installed via Inspirations.<\\/li>\\n<li>Update: Updated the My Inspirations page with links to theme support.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.2<\\/h4>\\n\\n<p>Release date: April 14th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Add support for footer-menu locations<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.1<\\/h4>\\n\\n<p>Release date: February 16th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Disable custom menu by default.<\\/li>\\n<li>Bug fix: Add \\\"My Inspirations\\\" link in case js does not redirect.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.0<\\/h4>\\n\\n<p>Release date: January 25th, 2021<\\/p>\\n\\n<ul>\\n<li>New feature: Theme deployments can now include theme specific plugins.<\\/li>\\n<\\/ul>\\n\\n<h4>2.5.2<\\/h4>\\n\\n<p>Release date: December 8th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed Gutenberg detection, avoid errors when adding media.<\\/li>\\n<li>Bug fix: Avoid js errors when editor screens have no ability to add media.<\\/li>\\n<\\/ul>\\n\\n<h4>2.5.1<\\/h4>\\n\\n<p>Release date: October 23rd, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed \\\"Only variables should be passed by reference\\\" in class-boldgrid-inspirations-purchase-for-publish.php.<\\/li>\\n<\\/ul>\\n\\n<h4>2.5.0<\\/h4>\\n\\n<p>Release date: October 17th, 2020<\\/p>\\n\\n<ul>\\n<li>New feature: Invoicing and Caching options added as Inspirations features.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.4<\\/h4>\\n\\n<p>Release date: September 22nd, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.3<\\/h4>\\n\\n<p>Release date: August 11th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: WordPress 5.5 compatibility changes.<\\/li>\\n<li>Update: Optimized usage of set<em>staging<\\/em>installed.<\\/li>\\n<li>Update: Optimized \\\"get total coin cost\\\".<\\/li>\\n<li>Update: Updated links in login footer<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.2<\\/h4>\\n\\n<p>Release date: June 15th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.1<\\/h4>\\n\\n<p>Release date: May 29th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.0<\\/h4>\\n\\n<p>Release date: May 18th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Changes needed for Crio.<\\/li>\\n<li>Bug fix: Attribution page will not show excpert.<\\/li>\\n<li>Bug fix: Fixed display \\/ position of BoldGrid Connect image search results.<\\/li>\\n<\\/ul>\\n\\n<h4>2.3.1<\\/h4>\\n\\n<p>Release date: March 12th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Unable to click button on email confirmation page.<\\/li>\\n<li>Update: Removed \\\"Add new from GridBlocks\\\" feature.<\\/li>\\n<\\/ul>\\n\\n<h4>2.3.0<\\/h4>\\n\\n<p>Release date: December 17th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Added noindex to the attribution page.<\\/li>\\n<li>Update: Changed the form plugin from WPForms to weForms.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.2.2<\\/h4>\\n\\n<p>Release date: November 22st, 2019<\\/p>\\n\\n<ul>\\n<li>Update: BoldGrid Backup is now Total Upkeep - updating references.<\\/li>\\n<li>Update: Updated dependency boldgrid\\/library to 2.10.6.<\\/li>\\n<\\/ul>\\n\\n<h4>2.2.1<\\/h4>\\n\\n<p>Release date: October 15th, 2019<\\/p>\\n\\n<ul>\\n<li>Update:  Updated dependency boldgrid\\/library to 2.10.4.<\\/li>\\n<\\/ul>\\n\\n<h4>2.2.0<\\/h4>\\n\\n<p>Release date: September 17th, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: Recommend the BoldGrid Backup plugin for users needing to transfer a site.<\\/li>\\n<li>Update: Updating dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.1.1<\\/h4>\\n\\n<p>Release date: September 5th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Updating dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.1.0<\\/h4>\\n\\n<p>Release date: August 29th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Removed the \\\"Welcome to BoldGrid\\\" dashboard widget.<\\/li>\\n<li>Update: Add notice to dashboard widget.<\\/li>\\n<li>Update: Remove news widget from dashboard.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.7<\\/h4>\\n\\n<p>Release date: August 16, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing compact warnings<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.6<\\/h4>\\n\\n<p>Release date: August 1st, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.5<\\/h4>\\n\\n<p>Release date: July 25th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Added a switch for toggling branding of the login page.<\\/li>\\n<li>Update: Cleaned up logic on purchase coins page.<\\/li>\\n<li>Update: Updated dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.4<\\/h4>\\n\\n<p>Release date: July 2nd, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Replaced the BoldGrid RSS feed widget on the dashboard with one in the updated library package.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.3<\\/h4>\\n\\n<p>Release date: May 21st, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing \\\"Call to undefined method getAttribute\\\" error.<\\/li>\\n<li>Bug fix: Replacing deprecated filter on login: login<em>headertitle \\/ login<\\/em>headertext.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.2<\\/h4>\\n\\n<p>Release date: Apr 23nd, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing usage of php\'s empty function for php &lt; 5.5<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.1<\\/h4>\\n\\n<p>Release date: Apr 19th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing class property declaration for php &lt; 5.6<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.0<\\/h4>\\n\\n<p>Release date: Apr 16th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Made translation ready. Text domain is boldgrid-inspirations.<\\/li>\\n<li>Update: Inspirations process with full screen mode and design updates.<\\/li>\\n<li>New feature: Inspirations dashboard.<\\/li>\\n<li>New feature: German translations added - de_DE.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.5<\\/h4>\\n\\n<p>Release date: Jan 29th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Pages fail to install on Pages > Add New.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.4<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Unable to save \\\"boldgrid<em>menu<\\/em>option\\\" on settings page.<\\/li>\\n<li>Bug fix:                       Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.3<\\/h4>\\n\\n<p>Release date: Dec 4th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Coin Budget help was not toggling when clicked.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.2<\\/h4>\\n\\n<p>Release date: Nov 26th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-33   Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.1<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Update:       JIRA BGCONN-20   Removed update settings; have been moved to the BoldGrid Library packages.<\\/li>\\n<li>Bug fix:      JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Attribution page not being rebuilt \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search in the Customizer \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Recommended image sizes not working as expected.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.0<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated BoldGrid library to version 2.4.2.<\\/li>\\n<li>New feature:  JIRA BGINSP-24  Log data when there may be a connection or Ajax error.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-16  Warnings and notices within inspiration w\\/ Crio theme<\\/li>\\n<li>Bug fix:      JIRA BGINSP-23  Fixed issue: Connect Search may load with connection notice.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.7<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated to library version 2.3.5.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-14  Fatal in PHP >=7.1.0 when creating internal preview builds.<\\/li>\\n<li>Bug fix:      JIRA WPB-3767   Prevent invalid API calls for check-version.<\\/li>\\n<li>Update:       JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-3730   Updated library dependency to ^2.0.0.<\\/li>\\n<li>Update:       JIRA BGINSP-3   Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.<\\/li>\\n<li>Update:       JIRA WPB-3684   Updated composer.json, due to package changes.<\\/li>\\n<li>New feature:  JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGSTAGE-32 Fixed staging plugin install.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA BGINSP-4   Removed admin notice recommending plugin installations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3643   Ensure that deployment does not install new wporg plugins if old ones are installed.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3587   Menu assignment after deployment broken in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3570   Inspirations Select button misplaced in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3593   Changes require to help Staging support new Customizer scheduler.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updates to library.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.11<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3336   All and Default categories do not align.<\\/li>\\n<li>Bug fix:      JIRA WPB-3337   On a fresh install, Pages - New From GridBlocks fails.<\\/li>\\n<li>Bug fix:      JIRA WPB-3333   Image search only searching one provider instead of all.<\\/li>\\n<li>Bug fix:      JIRA WPB-3346   Edit Image button not working for attachment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3387   Loading GridBlocks just spins.<\\/li>\\n<li>Update:       JIRA WPB-3352   Purchase coins through BoldGrid Central.<\\/li>\\n<li>Update:       JIRA WPB-3355   Add data-image-url attribute.<\\/li>\\n<li>Update:       JIRA WPB-3382   More descriptive creative commons icon.<\\/li>\\n<li>Update:       JIRA WPB-3384   Add License details to attachment details.<\\/li>\\n<li>Update:       JIRA WPB-3383   Filter out boldgrid-gridblock-set-preview-page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3318   When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.<\\/li>\\n<li>Bug fix:      JIRA WPB-3312   Ensure activation of preferred form plugin.  Added filter for preferred slug.<\\/li>\\n<li>Bug fix:      JIRA WPB-3317   New page from GridBlocks not working.<\\/li>\\n<li>Update:       JIRA WPB-3252   Disable \'default\' category and configure \'showcase\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-3332   New from gridblocks button not showing.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.8<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3200   Added WPForms support.<\\/li>\\n<li>Update:       JIRA WPB-3292   Updated plugin URI.<\\/li>\\n<li>Update:   JIRA WPB-3296 Add Inspirations as first menu item child.<\\/li>\\n<li>Bug Fix:  JIRA WPB-3274 Plugins > Add New Updates fail in modals.<\\/li>\\n<li>New feature:  JIRA WPB-3293   Resize images during deployment vs imgr server.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.7<\\/h4>\\n\\n<ul>\\n<li>Update:      JIRA WPB-3243    Change feedback admin notice display frequency.<\\/li>\\n<li>Update:      JIRA WPB-3264 Adding twitch social media option.<\\/li>\\n<li>New Feature: Added BoldGrid Library to plugin.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3179   Gradient style being lost during normal deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3180   Open WordPress\\/BoldGrid links in attribution page in new tab.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3161   Fixed auto plugin update.<\\/li>\\n<li>Bug fix:      JIRA WPB-3162   Fixed issue creating .htaccess file in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3171   As an author, when installing a site I do not want background images to be processed.<\\/li>\\n<li>Bug fix:      JIRA WPB-3176   Background gradient \\/ url bug during deplyment.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3151   Added check and load before using get<em>plugin<\\/em>data() for updates.<\\/li>\\n<li>Bug fix:      JIRA WPB-3141   Fixed invalid updates for BoldGrid Prime theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-3158   Deployment\'s gallery updates are not saved.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3106   As an Author, I can set background images for elements.<\\/li>\\n<li>New feature:  JIRA WPB-3095   Update generic builds to display per theme channel.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2745   Fixed upgrade notices displaying when activation version was not recorded.<\\/li>\\n<li>Update:       JIRA WPB-3019   Updating attribution link creation.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3044   Automatically get Unsplash attribution.<\\/li>\\n<li>Update:       JIRA WPB-3043   Updating plugin description.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3232   Deploy Staging menu item missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-3233   BoldGrid Connect Search missing from new image widget.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2936   Updating YouTube videos for BoldGrid Dashboard\'s new release.<\\/li>\\n<li>Bug fix:      JIRA WPB-2927   Social media menu disappears.<\\/li>\\n<li>Update:       JIRA WPB-2949   Configure blog using categories.<\\/li>\\n<li>Bug fix:      JIRA WPB-2950   Added max height for reseller logos on login page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2925   Sidebar widgets don\'t match between preview and installed site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2951   Images in staging posts not being downloaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2955   Backwards compatibility - maps taking up 200px empty space.<\\/li>\\n<li>Bug fix:      JIRA WPB-2984   Attribution page 404.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2912   Fixed issue when installing plugins from the Tools Import page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2916   Inspirations deploy fatal error if an old forked plugin had the original installed.<\\/li>\\n<li>Bug fix:      JIRA WPB-2905   If installing via Author, do not update pages with survey data.<\\/li>\\n<li>Bug fix:      JIRA WPB-2910   Unterminated entity reference bug.<\\/li>\\n<li>Update:       JIRA WPB-2913   Validate email address in survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2404   iframe timeout in step 2 of Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2173   Error deleting image and redownloading.<\\/li>\\n<li>Bug fix:      JIRA WPB-2635   Start over staging affecting active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2493   Publish private posts during staging deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2796   Social media urls end in \\/username, go to 404s.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2892   Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).<\\/li>\\n<li>Update:       JIRA WPB-2900   Update verbiage of build coin cost.<\\/li>\\n<li>Bug fix:      JIRA WPB-2901   Scroll bars not visible on preview iframe in Chrome.<\\/li>\\n<li>Bug fix:                      Removing CTA hooks.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.7<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2819   Use switch instead of checkbox for Demo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2780   Theme screenshots opening directly, rather than within gallery.<\\/li>\\n<li>Update:       JIRA WPB-2825   Adjust do not display formatting.<\\/li>\\n<li>Update:       JIRA WPB-2829   Updating hook to resolve BoldGrid SEO plugin conflicts.<\\/li>\\n<li>Update:       JIRA WPB-2837   Remove loading image after selecting theme in Gallery.<\\/li>\\n<li>Update:       JIRA WPB-2839   Minor verbiage change for Add a blog.<\\/li>\\n<li>Update:       JIRA WPB-2785   Entering words with apostrophe in it for Site title displays with a Backslash.<\\/li>\\n<li>Bug fix:      JIRA WPB-2848   Customize link takes users back to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2527   \'New from GridBlocks\' preview page appearing in cart.<\\/li>\\n<li>Bug fix:      JIRA WPB-2862   Survey, invalid argument supplied for foreach.<\\/li>\\n<li>Bug fix:      JIRA WPB-2601   Inspirations Internet Explorer\\/ Stuck on loading themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2854   Downloading Image spinner never stops spinning.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2772   PHP warnings on deploy in WordPress 4.3.7.<\\/li>\\n<li>Bug fix:      JIRA WPB-2766   Plesk and WP-CLI were not getting private repo updates.<\\/li>\\n<li>Update:       JIRA WPB-2763   Update email and address on Contact Us page.<\\/li>\\n<li>Update:       JIRA WPB-2764   Remove option to add a map.<\\/li>\\n<li>Update:       JIRA WPB-2765   Allow iframes for preview builds.<\\/li>\\n<li>New feature:  JIRA WPB-2771   Update footer-company-details widget with survey data.<\\/li>\\n<li>New feature:  JIRA WPB-2777   Add an Install sample blog checkbox.<\\/li>\\n<li>New feature:  JIRA WPB-2778   Setup a blog during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2792   Staged posts (private posts) are trashed when starting over active site.<\\/li>\\n<li>Update:       JIRA WPB-2800   Ensure \'Install a blog\' works with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2801   Remove milestones classes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2779   Survey not working with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2805   Preview builds w &amp; w\\/o blogs.<\\/li>\\n<li>New feature:  JIRA WPB-2806   Add filter for Inspirations configs.<\\/li>\\n<li>Bug fix:      JIRA WPB-2808   Do not request generic builds when requesting blog as well.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.5<\\/h4>\\n\\n<ul>\\n<li>Testing:      JIRA WPB-2744   Tested on WordPress 4.7.<\\/li>\\n<li>Update:       JIRA WPB-2376   Filter the bgtfw contact blocks.<\\/li>\\n<li>Update:       JIRA WPB-2476   Update case of Company name.<\\/li>\\n<li>Update:       JIRA WPB-2747   Update Add a map verbiage.<\\/li>\\n<li>Update:       JIRA WPB-2749   Add a map to my Contact page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2658   Fix spacing issues atop Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2751   Show all in the smaller view of inspirations doesn\'t work anymore.<\\/li>\\n<li>Bug fix:      JIRA WPB-2757   Apostrophe and other strange characters installed via Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2759   DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2696   Remove placeholders from survey.<\\/li>\\n<li>New feature:  JIRA WPB-2697   Update phone numbers in widgets.<\\/li>\\n<li>New feature:  JIRA WPB-2699   Use phone number entered during survey.<\\/li>\\n<li>Update:       JIRA WPB-2704   Adjust format of how social media icons are saved.<\\/li>\\n<li>New feature:  JIRA WPB-2705   Use survey social media items when creating menu.<\\/li>\\n<li>Update:       JIRA WPB-2711   Show optional message in survey.<\\/li>\\n<li>Update:       JIRA WPB-2712   Have plus sign toggle more social icons.<\\/li>\\n<li>Update:       JIRA WPB-2723   Update phone in pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2627   Back \\/ next buttons should not be clickable.<\\/li>\\n<li>Bug fix:      JIRA WPB-2625   Behavior of last image\'s next button in Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.2<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2582   Always show arrows in Inspirations gallery.<\\/li>\\n<li>Update:       JIRA WPB-2583   Ensure first letter in theme\'s title attribute is capitalized.<\\/li>\\n<li>Update:       JIRA WPB-2599   Add placeholder for 4th step to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2551   Duplicate images.<\\/li>\\n<li>New feature:  JIRA WPB-2603   Add initial version of survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2622   Inspirations - Step 4 - Go back button installs site.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2503   Added plugin requirements to readme.txt file.<\\/li>\\n<li>Bug fix:      JIRA WPB-2539   Fix possible duplicate connection issue notice from ajax.js call.<\\/li>\\n<li>Bug fix:      JIRA WPB-2558   Don\'t display feedback widget if user hasn\'t entered their key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2559   Don\'t allow widgets to drag into welcome box area.<\\/li>\\n<li>Bug fix:      JIRA WPB-2555   Images in search results flicker.<\\/li>\\n<li>Update:       JIRA WPB-2563   Convert Attribution page to use custom post type.<\\/li>\\n<li>Update:       JIRA WPB-2568   Added fancybox and large previews to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2570   Milestone blogname change.<\\/li>\\n<li>Update:       JIRA WPB-2574   Milestone Social Media Change.<\\/li>\\n<li>Update:       JIRA WPB-2578   Milestone Contact Info Footer Change.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2544   Disable \'Install\' button after clicking it.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.13<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2531   Javascript error checking needed for mine count.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.12<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2472   Added update notice for 1.3.<\\/li>\\n<li>Bug fix:      JIRA WPB-2486   Incorrect page count on All Pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-2467   With staging disabled, Customize goes to \\\"Change Themes\\\".<\\/li>\\n<li>Update:       JIRA WPB-2488   Remove \'Permanently delete pages instead of sending to trash\'.<\\/li>\\n<li>Update:       JIRA WPB-2490   Move default option to \'install as staging\'.<\\/li>\\n<li>Update:       JIRA WPB-2491   Add \'Customize > Active Theme\' navigation to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2496   Require comment text in feedback form.<\\/li>\\n<li>Update:       JIRA WPB-2229   Update error reporting when purchasing images.<\\/li>\\n<li>Update:       JIRA WPB-2498   Change \'Company Name\' to theme name.<\\/li>\\n<li>Update:       JIRA WPB-2497   Add new dashboard videos.<\\/li>\\n<li>Bug fix:      JIRA WPB-2376   \'No search results\' method is not cleared in BGCS.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.11<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2468   Switching between boldgrid admin menu and standard wp menu no longer works.<\\/li>\\n<li>Bug fix:      JIRA WPB-2477   If you have an existing site non BG, no route for staging exists.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2446   Fixed missing build id passed on site install.<\\/li>\\n<li>Bug fix:      JIRA WPB-2426   Insert Gridblock button is missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-2443   When starting over, I get a blank page.<\\/li>\\n<li>Bug fix:      JIRA WBP-2445   Inspirations is not fetching cached themes.<\\/li>\\n<li>Update:       JIRA WPB-2458   Update \'Recommended\' verbiage in last step of Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.9<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2420   Added EOF line breaks.<\\/li>\\n<li>Bug fix:      JIRA WPB-2387   Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2324   Attribution should not show in 404 sitemap.<\\/li>\\n<li>Bug fix:      JIRA WPB-2403   No plugins recommended still showing notice.<\\/li>\\n<li>Update:       JIRA WPB-2416   Text changes for confirmation section of Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2417   Add additional text to deployment success page for staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-2421   Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...<\\/li>\\n<li>Bug fix:      JIRA WPB-2112   BoldGrid Connect Search missing for galleries.<\\/li>\\n<li>Bug fix:      JIRA WPB-2422   Fixed CSS Loading graphic animation in chrome to display properly.<\\/li>\\n<li>Bug fix:      JIRA WPB-2401   Gallery not displaying correctly in Chrome &amp;&amp; FF.<\\/li>\\n<li>Bug fix:      JIRA WPB-2423   Trying to get property of non-object in ...stock-photography.php.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2398   Error requesting free key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2399   Only show feedback widget to admins.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2389   Fixed saving BoldGrid Settings.<\\/li>\\n<li>Bug fix:      JIRA WPB-2388   Removed duplicate boldgrid_activate().<\\/li>\\n<li>Update:       JIRA WPB-2390   Update verbiage for inspirations install success.<\\/li>\\n<li>Bug fix:      JIRA WPB-2391   Hide BoldGrid Welcome Panel if key isn\'t entered yet.<\\/li>\\n<li>Bug fix:      JIRA WPB-2392   If key is less than 32 char don\'t make call to validate.<\\/li>\\n<li>Bug fix:      JIRA WPB-2393   Error messages should be removed when resubmitting keys.<\\/li>\\n<li>Bug fix:      JIRA WPB-2394   Cursor for show\\/hide log should be a pointer.<\\/li>\\n<li>Update:       JIRA WPB-2395   Update login page styling.<\\/li>\\n<li>Bug fix:      JIRA WPB-2396   Remove staging from recommended plugin notices.<\\/li>\\n<li>Bug fix:      JIRA WPB-2327   Check if framework is handling plugin recommendations before recommending.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.6<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2344   Updated readme.txt for Tested up to 4.6.1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2336   Load BoldGrid settings from the correct WP option (site\\/blog).<\\/li>\\n<li>Bug fix:      JIRA WPB-2248   Removed \'New From GridBlocks\' button on edit submission page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2332   Reset scroll position on step 2 of Inspirations to top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2339   Remove notices from Inspirations page.<\\/li>\\n<li>Update:       JIRA WPB-2208   Removed tutorials from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2359   Order \'Category Filter\' by category display order.<\\/li>\\n<li>Update:       JIRA WPB-2360   Sort themes by category and then order within category.<\\/li>\\n<li>Update:       JIRA WPB-2368   Read version constant from plugin file.<\\/li>\\n<li>Update:       JIRA WPB-2361   Add BoldGrid Connect Search to Editor\'s background image tool.<\\/li>\\n<li>Update:       JIRA WPB-2354   Preview button needs to always be visible in mobile view.<\\/li>\\n<li>Update:       JIRA WPB-2355   Remove extraneous \'Preview\' button.<\\/li>\\n<li>Bug fix:      JIRA WPB-2364   Inspirations not respecting theme release channel.<\\/li>\\n<li>Bug fix:      JIRA WPB-2370   Color in screenshot does not match preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-2373   Duplicate themes in Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2379   Wrong budget passed when going form step 2 to step 1.<\\/li>\\n<li>Update:       JIRA WPB-2380   Remove references to tutorials in deployment congrats message.<\\/li>\\n<li>Bug fix:      JIRA WPB-2383   Image Search tab appears when clicking \'Add GridBlock\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2325   Added wrapper to handle mb<em>convert<\\/em>encoding() if mbstring is not loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2313   Disabled GridBlocks in network admin pages.<\\/li>\\n<li>New feature:  JIRA WPB-2268   Changed to resized preview screenshots for Inspirations Design First concept.<\\/li>\\n<li>New feature:  JIRA WPB-2287   Adjust device preview buttons in step 2 to behave like those in editor.<\\/li>\\n<li>New feature:  JIRA WPB-2291   Auto install staging in final step if user chooses staging.<\\/li>\\n<li>Update:       JIRA WPB-2290   Changed \'Install\' button to \'Next\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-2289   Continuously clicking category in step 1 shuffles themes.<\\/li>\\n<li>Update:       JIRA WPB-2267   Added message to Inspirations when no generic themes are available.<\\/li>\\n<li>Update:       JIRA WPB-2315   Added error handling for malformed ajax results for call to \\/api\\/build\\/get-generic.<\\/li>\\n<li>Update:       JIRA WPB-2316   Add error handling for failures to fetch categories.<\\/li>\\n<li>Update:       JIRA WPB-2317   Add error handling for failures to fetch pagesets.<\\/li>\\n<li>Update:       JIRA WPB-2319   Check user capabilities before prompting for api key.<\\/li>\\n<li>Update:       JIRA WPB-2320   Ensure user has permission to edit page before allowing download<em>and<\\/em>insert<em>into<\\/em>page.<\\/li>\\n<li>Update:       JIRA WPB-2322   Sanitize user feedback before adding to options table.<\\/li>\\n<li>Update:       JIRA WPB-2323   Allow admin notices to be dismissed per user.<\\/li>\\n<li>Update:       JIRA WPB-2326   Update \'update\' class to utilize Admin Notices class.<\\/li>\\n<li>Update:       JIRA WPB-2327   Check user capabilities before showing admin notices.<\\/li>\\n<li>Update:       JIRA WPB-2331   Update confirmation messages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2269   Typo fix in Boldgrid<em>Inspirations<\\/em>Dependency<em>Plugins::print<\\/em>uninstalled_plugins().<\\/li>\\n<li>Bug fix:      JIRA WPB-2270   New From GridBlocks became unavailable.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-2172   For preview generic builds, added an option for identification for purges, etc.<\\/li>\\n<li>Bug fix:      JIRA WPB-2263   For preview sites under multisite, set the admin email address using the network admin email address.<\\/li>\\n<li>Bug fix:      JIRA WPB-2223   Reworked API key validation and connection issue notices, formatting.<\\/li>\\n<li>Misc:         JIRA WPB-2256   Updated readme.txt for Tested up to: 4.6.<\\/li>\\n<li>Rework:       JIRA WPB-2150   Moved API methods to a new class, formatting, and phpcs rework.<\\/li>\\n<li>Bug fix:      JIRA WPB-2224   Hide the email address field when widget is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2225   Fixed jQuery Migrate deprecated warning.<\\/li>\\n<li>Update:       JIRA WPB-2245   Changed feed to pull from dashboard tag on blog.<\\/li>\\n<li>Bug fix:      JIRA WPB-2265   Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.<\\/li>\\n<li>Bug fix:      JIRA WBP-2236   Errors everywhere when logging in as an Editor.<\\/li>\\n<li>Bug fix:      JIRA WPB-2234   Add current<em>user<\\/em>can checks to Boldgrid<em>Inspirations->set<\\/em>api<em>key<\\/em>callback().<\\/li>\\n<li>Bug fix:      JIRA WPB-2237   Limit ajax requests by user.<\\/li>\\n<li>Bug fix:      JIRA WPB-2240   Limit printing of configs in head.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to the tutorials page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2184   In PHP 5.2, deactivate and die properly.<\\/li>\\n<li>New feature:                  Added BoldGrid news widget to dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1994   Fixed issue with WP Theme Editor not being available.<\\/li>\\n<li>New feature:                  Added BoldGrid Feedback widget.<\\/li>\\n<li>Bug fix:      JIRA WPB-2169   Connect Search defaults to smallest image size when no recommended sizes available.<\\/li>\\n<li>Bug fix:    JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2160   New From GridBlocks, multiple pages are installed.<\\/li>\\n<li>Update:                       Changed text of getting and entering connect keys.<\\/li>\\n<li>Security:     JIRA WPB-2151   Disabled autocomplete for API key entry fields.<\\/li>\\n<li>Bug fix:      JIRA WPB-2145   Fixing issue with theme screenshots on Chrome Ubuntu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2119   For asset downloads, when Imagick is loaded, set the thread limit to 1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2125   Fixing issue where theme was overwritten without version change.<\\/li>\\n<li>Bug fix:      JIRA WPB-2104   Go back button hides all themes (Inspirations > Add Theme).<\\/li>\\n<li>Bug fix:      JIRA WPB-2107   BoldGrid Connect Search overlapping footer (Dashboard > Media).<\\/li>\\n<li>Bug fix:      JIRA WPB-2109   Session issues when starting over and importing active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2116   Changes to the order of images in a gallery are not saving.<\\/li>\\n<li>Bug fix:      JIRA WPB-2134   Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-2135   Image not replaced in Page &amp; Post Editor after using Connect Search.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to Inspirations, so admin notices are displayed at the top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2041   Fixed BoldGrid theme update check in WordPress 4.6.<\\/li>\\n<li>Testing:      JIRA WPB-2046   Tested on WordPress 4.5.3.<\\/li>\\n<li>New feature:  JIRA WPB-599    Added options for plugin and theme auto-updates via WordPress autoupdater.<\\/li>\\n<li>Update:       JIRA WPB-2008   Deploy class updated to allow for is_generic flag.<\\/li>\\n<li>Bug fix:      JIRA WPB-1950   Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2032   Fixed issue when activating key.  Added nonce to api key form.<\\/li>\\n<li>Rework:       JIRA WPB-2030   Updated the \\\"I don\'t have an API key\\\" section.<\\/li>\\n<li>New feature:  JIRA WPB-2029   Added TOS box to API key submission form.<\\/li>\\n<li>New feature:  JIRA WPB-1905   Added capability for auto-updates of boldgrid-inspirations by API response.<\\/li>\\n<li>Bug fix:      JIRA WPB-2002   Fixed theme update issue where upgrader says is up to date at times.<\\/li>\\n<li>Bug fix:      JIRA WPB-2006   Pdes and Homepage not installing correctly on Inpirations Theme Only installs.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.6<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1839   Users can now change their theme release channel.<\\/li>\\n<li>Security fix: JIRA WPB-1977   Validate nonce for feedback form diagnostic data callback and form submit.<\\/li>\\n<li>Bug fix:      JIRA WPB-1955   Fatal error: Class \'Boldgrid<em>Staging<\\/em>Plugin\' not found.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1914   Staged image used on Active page not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1886   Fixed feedback notice being displayed too often (more than a week after submitting).<\\/li>\\n<li>New feature:  JIRA WPB-1183   Refresh the Library Tab after downloading an image.<\\/li>\\n<li>Update:       JIRA WPB-1865   Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.<\\/li>\\n<li>Update:       JIRA WPB-1884   Passed WordPress 4.5.1 testing.<\\/li>\\n<li>Bug fix:      JIRA WPB-1855   Do not display feedback notice on update or setting pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1860   Fixed horizontal line through screenshot in step 2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1863   Cart does not look for watermarked images used within staged pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1891   View \\/ Download of images within receipts not working for images purchased via Staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-1893   JS errors in console when viewing attachments.<\\/li>\\n<li>Bug fix:      JIRA WPB-1900   Attribution shows in menu when menu generated using wp<em>page<\\/em>menu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1824   Fixed order of plugin deactivation and uninstall in Start Over process.<\\/li>\\n<li>Bug fix:      JIRA WPB-1814   Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.<\\/li>\\n<li>Bug fix:      JIRA WPB-1823   Fixed display of \\\"Themes\\\" H1 and the additional themes bar when choosing active or staging before installing a theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-1840   Fixing thumbnail presentation in inspirations and add new theme.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.3<\\/h4>\\n\\n<ul>\\n<li>Update:               Sync version. See version 1.1.1.1.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1833   Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1817   BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Removed feedback form bug report diagnostic report items.<\\/li>\\n<li>Bug fix:      JIRA WPB-1816   Fixed update class interference with the Add Plugins page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1809   Fixed undefined index \\\"action\\\" for some scenarios.  Optimized update class and addressed CodeSniffer items.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Reworked admin feedback notice.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Removed analysis processing and optional logging capabilities.  Added support for XHProf.<\\/li>\\n<li>Bug fix:      JIRA WPB-1805   Now adds theme update info on the Customizer Themes page.<\\/li>\\n<li>Rework:       JIRA WPB-1785   Enabled and reworked image caching for the preview server.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Reworked analysis processing.<\\/li>\\n<li>Update:       JIRA WPB-1658   Storing more reliable install data through inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-1787   When not using BoldGrid menu, cart does not dynamically update total page price.<\\/li>\\n<li>Update:       JIRA WPB-1754   Remove attribution page from search results.<\\/li>\\n<li>Bug fix:      JIRA WPB-1788   webkit css missing from \'new from gridblocks\'.<\\/li>\\n<li>New feature:  JIRA WPB-1806   Add \'BoldGrid search\' tab when replacing an image.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix:                      Fixing logo display on login screen.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Fixed analysis include for preview server.<\\/li>\\n<li>Bug fix:                      New From GridBlocks: Asset download issues.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1751   Added analysis processing and optional logging capabilities.<\\/li>\\n<li>Bug fix:      JIRA WPB-1781   Removed boldgrid<em>dismissed<\\/em>admin_notices from Start Over cleanup.<\\/li>\\n<li>New feature:  JIRA WPB-1541   Added feedback notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-1747   New From GridBlocks: For non BoldGrid themes, only load grid css.<\\/li>\\n<li>Bug fix:      JIRA WPB-1760   New From GridBlocks: Ensure page title shows on preview page.<\\/li>\\n<li>Update:       JIRA WPB-1779   New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1710   Fixed missing device preview tabs on Add New Theme preview modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1710   Fixed notice dismissal checking.<\\/li>\\n<li>Bug fix:      JIRA WPB-1749   On start over, staging menus are not deleted.<\\/li>\\n<li>Bug fix:      JIRA WPB-1755   Gallery images not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1740   Fixed \\\"In Menu\\\" messages in editor when staging plugin is not active, and fixed saving menu selections.<\\/li>\\n<li>New feature:  JIRA WPB-1726   Added optional feedback for GridBlock Add Page.<\\/li>\\n<li>Removed Ft:   JIRA WPB-1710   Removed Inspirations Add Pages; replaced by GridBlocks.<\\/li>\\n<li>Misc:         JIRA WPB-1361   Added license file.<\\/li>\\n<li>New feature:                  Don\'t assign footer contact widget if using base pagesets.<\\/li>\\n<li>Bug Fix:      JIRA WPB-1732   Fixing css issues on login screen (firefox).<\\/li>\\n<li>Bug Fix:      JIRA WPB-1687   Image search: Title, Caption, Alt Text and Description do not display on new pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.11<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1699   Added optional feedback for theme activation.<\\/li>\\n<li>New feature:  JIRA WPB-1690   Adding BoldGrid themes to All themes install menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1686   Limited items loaded in network admin pages.<\\/li>\\n<li>Improvement:  JIRA WPB-1604   Added a \\\"Cancel\\\" link to the \\\"In Menu\\\" section.<\\/li>\\n<li>Improvement:  JIRA WPB-1603   Display menu locations in the editor \\\"In Menu\\\" section.<\\/li>\\n<li>Bug fix:      JIRA WPB-1602   Corrected capitalization of \\\"None\\\" under \\\"In menu\\\" in the editor.<\\/li>\\n<li>Improvement:  JIRA WPB-1664   Gets api<em>key and site<\\/em>hash from configs instead of get_option.<\\/li>\\n<li>Bug fix:      JIRA WPB-1597   Fixing indefined index error<\\/li>\\n<li>New feature:  JIRA WPB-1649   Added reporting of PHP version and mobile ratio.<\\/li>\\n<li>Bug fix:      JIRA WPB-1598   \'Mine\' count on \'all pages\' is incorrect.<\\/li>\\n<li>Bug fix:      JIRA WPB-1647   JS error with easy-attachment-preview-size.js.<\\/li>\\n<li>Bug fix:      JIRA WPB-1651   When the BG menu is turned off, Appearance link should take you to themes.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1632   Fixed handling of subcategory<em>id in deploy<\\/em>page_sets.<\\/li>\\n<li>New feature:  JIRA WPB-1510   Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations<\\/em>Utility).<\\/li>\\n<li>Rework:       JIRA WPB-1553   Updated require and include statements for standards.<\\/li>\\n<li>Bug fix:      JIRA WPB-1563   Updated pages in which wp<em>iframe-media<\\/em>upload.css is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-1549   Resolve attribution page missing attribution for several images.png.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Add GridBlock Sets feature disabled.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed support for PHP 5.2 to deactivate plugin.<\\/li>\\n<li>Bug fix:                      Prevent click of links in add<em>new<\\/em>page_selection previews.<\\/li>\\n<li>Bug fix:      JIRA WPB-1554   Fixed undefined JavaScript variable pagenow for customizer link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1554   Fixed theme link in network dashboard nav menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1590   Fixed JavaScript error for undefined screen info in network dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1535   Fixed theme deployment issues.<\\/li>\\n<li>New feature:  JIRA WPB-1584   Added an opt-out feedback payload delivery system.<\\/li>\\n<li>New feature:  JIRA WPB-1580   Added optional feedback for customizer_start.<\\/li>\\n<li>Bug fix:      JIRA WPB-1571   Removed plugin dependency admin notice when editing an attachment (image).<\\/li>\\n<li>New feature:  JIRA WPB-1579   Added feedback opt-out in BoldGrid Settings, hidden for now.<\\/li>\\n<li>Bug fix:      JIRA WPB-1575   Addressed an issue causing mismatch color palettes on cached previews<\\/li>\\n<li>New feature:  JIRA WPB-1514   Add new pages offers page templates to choose from.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed PHP version check condition (&lt;5.3).<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1561   Fixed missing get<em>plugin<\\/em>data on update calls.<\\/li>\\n<li>New feature:  JIRA WPB-1511   Added dependency plugin notice on editor pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1553   Added support for <strong>DIR<\\/strong> in PHP &lt;=5.2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1371   JSON encoded image data for media download requests.<\\/li>\\n<li>New feature:  JIRA WPB-1332   Swapping loading GIF to CSS loading image.<\\/li>\\n<li>New feature:  JIRA WPB-1072   Storing static pages on install<\\/li>\\n<li>New feature:  JIRA WPB-1539   When deleting a page, remove it from any applicable menus as well.<\\/li>\\n<li>New feature   JIRA WPB-1542   Manage menu assignment within editor.<\\/li>\\n<li>New feature   JIRA WPB-1555   Add wp-image-## class to images during deployment.<\\/li>\\n<li>New feature   JIRA WPB-1557   Add wp-image-## class to images when adding gridblocks.<\\/li>\\n<li>Bug fix:      JIRA WPB-1506   Theme naming missing in preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-1443   Extra page listed under \'Mine\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1560   Install options not available on preview server<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.6<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1411   Added more output to the deploy log.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1462   Fixed position of dependency plugins admin notice.  Also limited to Dashboard and plugins page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1290   Fixing issues with galleries leaving empty spaces<\\/li>\\n<li>Bug fix:      JIRA WPB-1471   Made deployment plugin installation respect release channel.<\\/li>\\n<li>Rework:       JIRA WPB-1452   Remove unneeded call to \'boldgrid<em>activate<\\/em>framework\' during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-946    Fixed margin bug on step 2 additional themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-1384   Increase width of select input on image search modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1508   BoldGrid Image search box size is inconsistent.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1442   Fixing inspiration border styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1461   Updating login button styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1411   Added initialization and checks for empty image queues in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-1406   Attribution page still showing in \'All Pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1451   Active images are showing in Staging attribution page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1466   Tabs on tutorials page too small at 1035px - 1482px.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1363   Updated readme.txt for WordPress standards.<\\/li>\\n<li>New feature:  JIRA WPB-1389   When starting over theme mods are saved with a flag to recompile sass<\\/li>\\n<li>Bug fix:      JIRA WPB-1420   Content of Attribution page is overwriting page saves.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1395   Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.<\\/li>\\n<li>Rework        JIRA WPB-1374   Updated activation timestamp to use GMT\\/UTC.<\\/li>\\n<li>Bug fix:      JIRA WPB-1377   Reseller option is now set on first call to either the front end or wp_login.<\\/li>\\n<li>Bug fix:                      Adjusted handling for image purchases when errors occur.<\\/li>\\n<li>Bug fix:      JIRA WPB-1365   Purchase link on editing a page goes to wrong link.<\\/li>\\n<li>Bug fix:      JIRA WPB-1368   Inspirations step 0 text refers to nonexisting help tabs.<\\/li>\\n<li>Rework:       JIRA WPB-1378   Adjusted formatting of footer in Dashboard.<\\/li>\\n<li>Rework:       JIRA WPB-1369   Update minus signs on \'Transaction History\'.<\\/li>\\n<li>New feature:  JIRA WPB-1379   On the transactions page, show the reseller that processed the credits.<\\/li>\\n<li>Bug fix:                      Count of \'All\' pages inaccurate on \'All pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1367   Updated link for \'Lost your BoldGrid Connect Key?\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1374   Updated activation timestamp to include timezone in UTC.<\\/li>\\n<li>Bug fix:                      Attribution page shows style tags.<\\/li>\\n<li>Bug fix:                      Strict Standards fix for wp<em>kses<\\/em>allowed_html.<\\/li>\\n<li>Bug fix:                      Fixed incorrect link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0<\\/h4>\\n\\n<ul>\\n<li>Initial public release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"<h4>1.3<\\/h4>\\n\\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https:\\/\\/www.boldgrid.com\\/boldgrid-1-3-released\\/ .<\\/p>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.<\\/p>\\n\"}\";s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:73207:\"{\"5.7\":{\"2.6.3\":[100,95]},\"5.6.4\":{\"2.6.3\":[100,95]},\"5.6.3\":{\"2.6.3\":[100,95]},\"5.6.2\":{\"2.6.3\":[100,95]},\"5.6.1\":{\"2.6.3\":[100,95]},\"5.6\":{\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.5.5\":{\"2.6.3\":[100,95]},\"5.5.4\":{\"2.6.3\":[100,95]},\"5.5.3\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.5.2\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.5.1\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.5\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4.6\":{\"2.6.3\":[100,95]},\"5.4.5\":{\"2.6.3\":[100,95]},\"5.4.4\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4.3\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4.2\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4.1\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.4\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.8\":{\"2.6.3\":[100,95]},\"5.3.7\":{\"2.6.3\":[100,95]},\"5.3.6\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.5\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.4\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.3\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.2\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3.1\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.9\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.7\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.6\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.5\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.4\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.2\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2.1\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.2\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.7\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.6\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.5\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.4\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.3\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.2\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1.1\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.1\":{\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.9\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.8\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.7\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.6\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.5\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.4\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.3\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.2\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.10\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0.1\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"5.0\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.9\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.14\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.13\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.12\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.11\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.10\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.9\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.8\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.10\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.13\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.12\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:113:\"{\"inspiration\":\"Inspiration\",\"customization\":\"Customization\",\"build\":\"Build\",\"create\":\"Create\",\"design\":\"Design\"}\";s:7:\"banners\";s:151:\"{\"low\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\"}\";s:6:\"editor\";O:8:\"stdClass\":3:{s:7:\"version\";s:7:\"1.6.0.2\";s:5:\"title\";s:15:\"BoldGrid Editor\";s:8:\"asset_id\";s:6:\"900312\";}s:7:\"staging\";O:8:\"stdClass\":3:{s:7:\"version\";s:5:\"1.5.1\";s:5:\"title\";s:16:\"BoldGrid Staging\";s:8:\"asset_id\";s:6:\"876738\";}s:14:\"theme_versions\";O:8:\"stdClass\":42:{s:2:\"26\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.20.8\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205437;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-uptempo-1.20.8.zip\";}s:2:\"28\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.8\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205430;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-diced-1.25.8.zip\";}s:2:\"29\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.8\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205424;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-evolv-1.25.8.zip\";}s:2:\"30\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.20.8\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205418;s:7:\"package\";s:63:\"https://repo.boldgrid.com/themes/boldgrid-florentine-1.20.8.zip\";}s:2:\"31\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.8\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205412;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-hifidel-1.25.8.zip\";}s:2:\"32\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.8\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205406;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-hydra-1.25.8.zip\";}s:2:\"33\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205401;s:7:\"package\";s:57:\"https://repo.boldgrid.com/themes/boldgrid-linx-1.25.9.zip\";}s:2:\"34\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205394;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-pavilion-1.25.9.zip\";}s:2:\"35\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205388;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-primas-1.25.9.zip\";}s:2:\"36\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.20.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205381;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-resolve-1.20.9.zip\";}s:2:\"38\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205372;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-vacation-1.25.9.zip\";}s:2:\"40\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205366;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-gridone-1.25.9.zip\";}s:2:\"42\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.18.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205358;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-venetian-1.18.9.zip\";}s:2:\"43\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.18.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205351;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-haven-1.18.9.zip\";}s:2:\"44\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.16.10\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205347;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-wedge-1.16.10.zip\";}s:2:\"45\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.15.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205344;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-monument-1.15.9.zip\";}s:2:\"48\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.3.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205337;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-callaway-1.3.9.zip\";}s:2:\"49\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.3.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205334;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-swifty-1.3.9.zip\";}s:2:\"50\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.3.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205331;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.3.9.zip\";}s:2:\"51\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.3.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205328;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-westview-1.3.9.zip\";}s:2:\"52\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"0.4.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205325;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-lattice-0.4.9.zip\";}s:2:\"54\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2020-05-15\";s:8:\"asset_id\";i:1097350;s:7:\"package\";s:45:\"https://repo.boldgrid.com/themes/Bolt-0.1.zip\";}s:2:\"56\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2020-06-30\";s:8:\"asset_id\";i:1110570;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/Coherent-0.1.zip\";}s:2:\"57\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-01-29\";s:8:\"asset_id\";i:1166277;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/SwiftyV2-0.1.zip\";}s:2:\"58\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-01-27\";s:8:\"asset_id\";i:1167731;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/GridOneV2-0.1.zip\";}s:2:\"59\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-02\";s:8:\"asset_id\";i:1170404;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/CallawayV2-0.1.zip\";}s:2:\"60\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-11\";s:8:\"asset_id\";i:1172882;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/ResolveV2-0.1.zip\";}s:2:\"61\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-17\";s:8:\"asset_id\";i:1174594;s:7:\"package\";s:48:\"https://repo.boldgrid.com/themes/WedgeV2-0.1.zip\";}s:2:\"62\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-17\";s:8:\"asset_id\";i:1175323;s:7:\"package\";s:48:\"https://repo.boldgrid.com/themes/DicedV2-0.1.zip\";}s:2:\"63\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-25\";s:8:\"asset_id\";i:1177324;s:7:\"package\";s:47:\"https://repo.boldgrid.com/themes/LinxV2-0.1.zip\";}s:2:\"64\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-02\";s:8:\"asset_id\";i:1177773;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/HifidelV2-0.1.zip\";}s:2:\"65\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-03\";s:8:\"asset_id\";i:1178992;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/UptempoV2-0.1.zip\";}s:2:\"66\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-11\";s:8:\"asset_id\";i:1180564;s:7:\"package\";s:48:\"https://repo.boldgrid.com/themes/EvolvV2-0.1.zip\";}s:2:\"67\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-18\";s:8:\"asset_id\";i:1182152;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/WestviewV2-0.1.zip\";}s:2:\"68\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-23\";s:8:\"asset_id\";i:1183787;s:7:\"package\";s:53:\"https://repo.boldgrid.com/themes/FlorentineV2-0.1.zip\";}s:2:\"69\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-04-01\";s:8:\"asset_id\";i:1184444;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/CrioStarter-0.1.zip\";}s:2:\"70\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-04-07\";s:8:\"asset_id\";i:1187346;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/VacationV2-0.1.zip\";}s:2:\"71\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-04-27\";s:8:\"asset_id\";i:1190564;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/MonumentV2-0.1.zip\";}s:2:\"72\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-05-03\";s:8:\"asset_id\";i:1192977;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/Hydra V2-0.1.zip\";}s:2:\"73\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-05-13\";s:8:\"asset_id\";i:1193996;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/VenetianV2-0.1.zip\";}s:2:\"74\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-05-20\";s:8:\"asset_id\";i:1196830;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/PrimasV2-0.1.zip\";}s:2:\"99\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.3.9\";s:7:\"updated\";s:10:\"2021-07-01\";s:8:\"asset_id\";i:1205331;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.3.9.zip\";}}s:9:\"site_hash\";s:32:\"0de51e42444f87ec72400f409b5eba01\";s:13:\"wporg_plugins\";O:8:\"stdClass\":4:{s:6:\"backup\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:50:\"https://plugins.svn.wordpress.org/boldgrid-backup/\";s:11:\"package_url\";s:66:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.14.13.zip\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:8:\"old_slug\";s:15:\"boldgrid-backup\";s:5:\"title\";s:12:\"Total Upkeep\";s:7:\"version\";s:7:\"1.14.13\";}s:6:\"editor\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:56:\"https://plugins.svn.wordpress.org/post-and-page-builder/\";s:11:\"package_url\";s:71:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.14.0.zip\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:8:\"old_slug\";s:15:\"boldgrid-editor\";s:5:\"title\";s:21:\"Post and Page Builder\";s:7:\"version\";s:6:\"1.14.0\";}s:3:\"seo\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:52:\"https://plugins.svn.wordpress.org/boldgrid-easy-seo/\";s:11:\"package_url\";s:67:\"https://downloads.wordpress.org/plugin/boldgrid-easy-seo.1.6.10.zip\";s:4:\"slug\";s:17:\"boldgrid-easy-seo\";s:8:\"old_slug\";s:12:\"boldgrid-seo\";s:5:\"title\";s:17:\"BoldGrid Easy SEO\";s:7:\"version\";s:6:\"1.6.10\";}s:7:\"weforms\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:42:\"https://plugins.svn.wordpress.org/weforms/\";s:11:\"package_url\";s:50:\"https://downloads.wordpress.org/plugin/weforms.zip\";s:4:\"slug\";s:7:\"weforms\";s:8:\"old_slug\";s:7:\"weforms\";s:5:\"title\";s:7:\"weForms\";s:7:\"version\";N;}}s:9:\"is_author\";b:0;}}s:14:\"license_status\";b:1;s:7:\"updated\";i:1629902773;}','no'),(330778,'_site_transient_timeout_boldgrid_backup_premium_version_data','1629923788','no'),(330886,'_transient_timeout_boldgrid_backup_system_zip_test','1629986161','no'),(330887,'_transient_boldgrid_backup_system_zip_test','1','no'),(330888,'_transient_timeout_boldgrid_backup_is_functional','1629986161','no'),(330889,'_transient_boldgrid_backup_is_functional','1','no'),(330908,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1629986166','no'),(330909,'_transient_jetpack_plugin_api_action_links_refresh','1629899766','no'),(238995,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.8.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.8-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.8-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"5.8\";s:7:\"version\";s:3:\"5.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.8.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.8-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.8-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"5.8\";s:7:\"version\";s:3:\"5.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.2\";s:7:\"version\";s:5:\"5.7.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.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1629902745;s:15:\"version_checked\";s:5:\"5.6.4\";s:12:\"translations\";a:0:{}}','no'),(241459,'_site_transient_boldgrid_plugins_filtered','a:5:{s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:13:{s:4:\"Name\";s:21:\"BoldGrid Inspirations\";s:9:\"PluginURI\";s:47:\"https://www.boldgrid.com/boldgrid-inspirations/\";s:7:\"Version\";s:5:\"2.4.4\";s:11:\"Description\";s:177:\"Find inspiration, customize, and launch! BoldGrid Inspirations includes FREE WordPress themes and is the easiest way to launch a new WordPress site complete with custom content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:21:\"boldgrid-inspirations\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:21:\"BoldGrid Inspirations\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:13:{s:4:\"Name\";s:21:\"Post and Page Builder\";s:9:\"PluginURI\";s:103:\"https://www.boldgrid.com/boldgrid-editor/?utm_source=ppb-wp-repo&utm_medium=plugin-uri&utm_campaign=ppb\";s:7:\"Version\";s:6:\"1.13.4\";s:11:\"Description\";s:175:\"Customized drag and drop editing for posts and pages. The Post and Page Builder adds functionality to the existing TinyMCE Editor to give you easier control over your content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:87:\"https://www.boldgrid.com/?utm_source=ppb-wp-repo&utm_medium=author-uri&utm_campaign=ppb\";s:10:\"TextDomain\";s:15:\"boldgrid-editor\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:21:\"Post and Page Builder\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";a:13:{s:4:\"Name\";s:29:\"Post and Page Builder Premium\";s:9:\"PluginURI\";s:60:\"https://www.boldgrid.com/wordpress-page-builder-by-boldgrid/\";s:7:\"Version\";s:5:\"1.0.4\";s:11:\"Description\";s:48:\"Premium extension for the Post and Page Builder.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:28:\"post-and-page-buider-premium\";s:10:\"DomainPath\";s:11:\"/languagesD\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:29:\"Post and Page Builder Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:13:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.14.6\";s:11:\"Description\";s:159:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:12:\"Total Upkeep\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:13:{s:4:\"Name\";s:20:\"Total Upkeep Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.5.4\";s:11:\"Description\";s:46:\"Premium extension for the Total Upkeep plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:20:\"Total Upkeep Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(330923,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1629902746;s:7:\"checked\";a:4:{s:5:\"mapro\";s:5:\"1.1.9\";s:14:\"twentynineteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"2.4\";s:12:\"twentytwenty\";s:3:\"1.6\";}s:8:\"response\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.1.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:9:\"no_update\";a:1:{s:5:\"mapro\";a:6:{s:5:\"theme\";s:5:\"mapro\";s:11:\"new_version\";s:5:\"1.1.9\";s:3:\"url\";s:35:\"https://wordpress.org/themes/mapro/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/mapro.1.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(330924,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1629902746;s:8:\"response\";a:7:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:6:\"4.1.11\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/akismet.4.1.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:47:\"post-and-page-builder/post-and-page-builder.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/post-and-page-builder\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:6:\"plugin\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:11:\"new_version\";s:6:\"1.14.0\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/post-and-page-builder/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.14.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-256x256.png?rev=1768477\";s:2:\"1x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-128x128.png?rev=1768477\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/post-and-page-builder/assets/banner-1544x500.png?rev=1768477\";s:2:\"1x\";s:76:\"https://ps.w.org/post-and-page-builder/assets/banner-772x250.png?rev=1768477\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:7:\"1.14.13\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.14.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/weforms\";s:4:\"slug\";s:7:\"weforms\";s:6:\"plugin\";s:19:\"weforms/weforms.php\";s:11:\"new_version\";s:5:\"1.6.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/weforms.1.6.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:6:\"plugin\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:11:\"new_version\";s:5:\"2.6.3\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:7:\"package\";s:150:\"https://wp-assets.boldgrid.com/api/asset/get?key=355b0ad5e905e1ae767c456b01bba1ae&id=1201345&installed_plugin_version=2.4.4&installed_wp_version=5.6.4\";}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:29:\"post-and-page-builder-premium\";s:6:\"plugin\";s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";s:11:\"new_version\";s:5:\"1.0.5\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:112:\"https://api.boldgrid.com/api/open/get-asset?id=1154659&installed_plugin_version=1.0.4&installed_wp_version=5.6.4\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:23:\"boldgrid-backup-premium\";s:6:\"plugin\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:11:\"new_version\";s:5:\"1.5.9\";s:6:\"tested\";s:3:\"5.8\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:7:\"package\";s:112:\"https://api.boldgrid.com/api/open/get-asset?id=1192077&installed_plugin_version=1.5.4&installed_wp_version=5.6.4\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"10.0\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.10.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=2394525\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2394525\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2394525\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";a:0:{}}}s:6:\"tested\";s:3:\"5.8\";}','no'),(330925,'_transient_timeout_jetpack_sync_callables_await','1629902806','no'),(330926,'_transient_jetpack_sync_callables_await','1629902746.4883','no'),(330773,'_site_transient_timeout_boldgrid_ppbp_version_data','1629923787','no'),(330774,'_site_transient_boldgrid_ppbp_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:29:\"Post and Page Builder Premium\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"asset_id\";i:1154659;s:12:\"release_date\";s:19:\"2020-12-08 17:23:32\";s:19:\"requires_wp_version\";s:3:\"4.7\";s:17:\"tested_wp_version\";s:3:\"5.8\";s:8:\"sections\";s:7448:\"{\"description\":\"<h4>What is the Post and Page Builder by BoldGrid?<\\/h4>\\n\\n<p>The Post and Page Builder is an intuitive drag and drop editor plugin and the easiest way to create and edit pages for any theme. Whether you are new to WordPress or consider yourself a pro, BoldGrid solutions will make your WordPress life better. Stop dealing with site-breaking shortcodes and theme restricted editors. You are going to love just how fast and easily you can create beautiful websites now.<\\/p>\\n\\n<p>Try out the <a href=\\\"https:\\/\\/www.boldgrid.com\\/central\\/get-it-now?redirect_url=wp-admin%2Fpost-new.php%3Fpost_type%3Dpage&amp;plugins=post-and-page-builder\\\">BoldGrid Demo<\\/a> on Cloud WordPress to see for yourself!<\\/p>\\n\\n<p>[youtube https:\\/\\/youtu.be\\/QoIb7OhV9ys?rel=0]<\\/p>\\n\\n<h4>Features<\\/h4>\\n\\n<ul>\\n<li><strong>Drag and Drop Editing<\\/strong> - Create simple or complex layouts with our unique editing experience<\\/li>\\n<li><strong>BoldGrid Blocks<\\/strong> - Hundreds of professional layout designs to work from<\\/li>\\n<li><strong>100% Mobile-friendly<\\/strong> - Responsive layouts and controls to change the design per device<\\/li>\\n<li><strong>Google Fonts<\\/strong> - Change font family, font size, font color, letter spacing, line height and more<\\/li>\\n<li><strong>Theme Compatibility<\\/strong> - Our WordPress Page Builder is designed to work with any WordPress Theme<\\/li>\\n<li><strong>Custom Backgrounds<\\/strong> - Add background images, gradient backgrounds, patterns, overlays, and background colors<\\/li>\\n<li><strong>Fast and Free Support<\\/strong> - Growing Community and knowledge base<\\/li>\\n<li><strong>Animations<\\/strong> - Add effects as the user scrolls down the page with Animate.css or background parallax scroll effects<\\/li>\\n<li><strong>Advanced Controls<\\/strong> - Add margin, padding, box shadows, borders, alignment and more to almost any element<\\/li>\\n<li><strong>Bootstrap Grid<\\/strong> - Drag and drop controls for bootstrap rows and columns elements<\\/li>\\n<li><strong>Add Custom CSS Classes<\\/strong> - Complete control over any element<\\/li>\\n<li><strong>Clean, Simple Markup<\\/strong> - Easily create a professionally coded template without experience<\\/li>\\n<li><strong>Google Maps<\\/strong> - Embed and customize maps into your post or page<\\/li>\\n<li><strong>Web Components<\\/strong> - High quality reusable and customizable HTML elements<\\/li>\\n<li><strong>Font Awesome Icons<\\/strong> - Insert and customize any Font Awesome icons<\\/li>\\n<li><strong>CSS Grid<\\/strong> - Full width, column and row based layouts<\\/li>\\n<li><strong>Image Editing<\\/strong> - Apply image filters and automatically crop images<\\/li>\\n<li><strong>Button Designs<\\/strong> - Fully customizable button designs<\\/li>\\n<li><strong>Custom Post Types<\\/strong> - Save and reuse full page layouts or BoldGrid Block designs<\\/li>\\n<li><strong>WordPress Editor Integration<\\/strong> - Integrated into TinyMCE so you can keep the same workflow<\\/li>\\n<li><strong>No Need for Shortcodes!<\\/strong> - Faster page loads by saving your custom HTML5 elements<\\/li>\\n<\\/ul>\\n\\n<p>Additional Features when used with other BoldGrid plugins:<\\/p>\\n\\n<ul>\\n<li>Dozens of free layout templates<\\/li>\\n<li>Integrated with professional image banks<\\/li>\\n<li>Contact Forms<\\/li>\\n<li>On-page SEO recommendations for targeted search phrase<\\/li>\\n<\\/ul>\\n\\n<p>Visit our website to learn more about additional <a href=\\\"https:\\/\\/www.boldgrid.com\\/wordpress-plugins\\/\\\">BoldGrid plugins<\\/a> to further improve your WordPress experience!<\\/p>\\n\\n<h4>People Love BoldGrid<\\/h4>\\n\\n<p>\\\"It\'s really the perfect starting point for just about any web project, allowing users to get their site up and running in very short time. \\\" - Digital.com<\\/p>\\n\\n<p>\\\"BoldGrid is a great extension to WordPress that will make my job a lot easier and faster while creating custom layouts and pages.\\\" - Webhostingmedia.net<\\/p>\\n\\n<p>\\\"Well, I have seen many site builders but this is the only one that provides so many features.\\\" - Woblogger.com<\\/p>\\n\\n<h4>A Post and Page Builder That Works With Your Theme and Plugins<\\/h4>\\n\\n<p>The Post and Page Builder by BoldGrid is designed to work with almost any WordPress theme. Add it to your existing website today, or try a BoldGrid theme for your new website. Alternatively, consider upgrading and using the powerful BoldGrid framework theme (available in Premium subscription) as an excellent time saver for agencies and developers.<\\/p>\\n\\n<h4>A Post and Page Builder Stuffed With Pre-Designed Templates &amp; Blocks<\\/h4>\\n\\n<p>Create layouts and pages faster and easier than ever with Blocks by BoldGrid. Blocks are pre-built page sections consisting of various layouts of rows and columns prepopulated with content that can be edited visually or with HTML and CSS. Blocks utilize a wide variety of content that can be completely customized to fit your needs such as icons, buttons, free and premium images, font packs, and more.<\\/p>\\n\\n<h4>A Post and Page Builder That Is Faster Than The Rest<\\/h4>\\n\\n<p>The Post and Page Builder by BoldGrid is designed to create pages that load fast. BoldGrid ditches shortcodes in favor of clean markup that can be served quickly. That also means BoldGrid code is easy to assess and customize.<\\/p>\\n\\n<h4>Coming Soon \\/ Maintenance Page<\\/h4>\\n\\n<p>Great for making \\\"under construction\\\" or \\\"coming soon\\\" pages. You can create a simple page within minutes by using free professionally designed WordPress Blocks.<\\/p>\\n\\n<h4>Bootstrap WYSIWYG Post &amp; Page Builder for WordPress<\\/h4>\\n\\n<p>Our drag and drop system is built on the Bootstrap Grid. You can drag columns, rows, and containers around your pages to make quick updates to pages.  Advanced CSS controls allow you to make pixel perfect designs.<\\/p>\\n\\n<h4>Create Custom Color Palette<\\/h4>\\n\\n<p>Choose your brand\'s colors and we\'ll help your design stay unified. Our unique color palette system is built with SASS and allows you to change all the colors on your site. You don\'t have to choose from a few presets anymore!<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP version 5.4 or greater<\\/li>\\n<li>WordPress 4.4 or greater<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire post-and-page-builder folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\\n<p>You will find a \'Post and Page Builder\' menu in your WordPress admin panel and find most features within the\\nWordPress Editor.<\\/p>\\n\",\"changelog\":\"<h4>1.0.5<\\/h4>\\n\\n<p>Release date: December 8th, 2020<\\/p>\\n\\n<ul>\\n<li>Fix: Compatibility issues with WordPress 5.6<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<p>Release date: November 11th, 2019<\\/p>\\n\\n<ul>\\n<li>Fix: Order posts by date instead of id.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<p>Release date: October 30th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Optimizing build files.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Release date: December 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed updating plugin via ajax<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: December 4th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug Fix: Fixing post excerpt wrapping element<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: October 16th, 2018<\\/p>\\n\\n<ul>\\n<li>New feature: Slider Components<\\/li>\\n<li>New feature: Post List Widget<\\/li>\\n<li>New feature: Single Post Widget<\\/li>\\n<\\/ul>\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:7750:\"{\"5.6.1\":{\"1.0.5\":[100,95]},\"5.6\":{\"1.0.5\":[100,95]},\"5.5.3\":{\"1.0.5\":[100,95]},\"5.5.2\":{\"1.0.5\":[100,95]},\"5.5.1\":{\"1.0.5\":[100,95]},\"5.5\":{\"1.0.5\":[100,95]},\"5.4.4\":{\"1.0.5\":[100,95]},\"5.4.3\":{\"1.0.5\":[100,95]},\"5.4.2\":{\"1.0.5\":[100,95]},\"5.4.1\":{\"1.0.5\":[100,95]},\"5.4\":{\"1.0.5\":[100,95]},\"5.3.6\":{\"1.0.5\":[100,95]},\"5.3.5\":{\"1.0.5\":[100,95]},\"5.3.4\":{\"1.0.5\":[100,95]},\"5.3.3\":{\"1.0.5\":[100,95]},\"5.3.2\":{\"1.0.5\":[100,95]},\"5.3.1\":{\"1.0.5\":[100,95]},\"5.3\":{\"1.0.5\":[100,95]},\"5.2.9\":{\"1.0.5\":[100,95]},\"5.2.8\":{\"1.0.5\":[100,95]},\"5.2.7\":{\"1.0.5\":[100,95]},\"5.2.6\":{\"1.0.5\":[100,95]},\"5.2.5\":{\"1.0.5\":[100,95]},\"5.2.4\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.2.3\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.2.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.2.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.1.8\":{\"1.0.5\":[100,95]},\"5.1.7\":{\"1.0.5\":[100,95]},\"5.1.6\":{\"1.0.5\":[100,95]},\"5.1.5\":{\"1.0.5\":[100,95]},\"5.1.3\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.1.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.1.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.0.7\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.0.6\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.0.5\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.0.4\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.0.3\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.0.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.0.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"5.0\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.9\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.8\":{\"1.0.0-alpha.0\":[100,12],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.12\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.11\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.10\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.9\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.8.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.8.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.8.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.8.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.8.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.8.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.8.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.8\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.9\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.8\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.11\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.10\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]},\"4.6.12\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:153:\"{\"boldgrid\":\"Boldgrid\",\"page builder\":\"Page builder\",\"drag and drop\":\"Drag and drop\",\"tinymce\":\"Tinymce\",\"editor\":\"Editor\",\"landing page\":\"Landing page\"}\";s:7:\"banners\";s:137:\"{\"low\":\"//ps.w.org/post-and-page-builder/assets/banner-772x250.png\",\"high\":\"//ps.w.org/post-and-page-builder/assets/banner-1544x500.png\"}\";}}s:7:\"updated\";i:1629894987;}','no'),(327848,'_site_transient_timeout_browser_a02ae86a42ae172822f307e07a0629f8','1630308855','no'),(327849,'_site_transient_browser_a02ae86a42ae172822f307e07a0629f8','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"92.0.4515.131\";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'),(327876,'can_compress_scripts','1','no'),(327877,'WPLANG','','yes'),(327895,'new_admin_email','piyush@piyush.ca','yes'),(328224,'_transient_is_multi_author','0','yes');
/*!40000 ALTER TABLE `wpw8_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_postmeta`
--

DROP TABLE IF EXISTS `wpw8_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_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=777 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_postmeta`
--

LOCK TABLES `wpw8_postmeta` WRITE;
/*!40000 ALTER TABLE `wpw8_postmeta` DISABLE KEYS */;
INSERT INTO `wpw8_postmeta` VALUES (3,4,'_wp_page_template','default'),(252,97,'_wp_attached_file','2020/04/cropped-Purple-Tulip-LOGO-2.jpg'),(253,97,'_wp_attachment_context','custom-logo'),(254,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1501;s:6:\"height\";i:741;s:4:\"file\";s:39:\"2020/04/cropped-Purple-Tulip-LOGO-2.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-Purple-Tulip-LOGO-2-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"cropped-Purple-Tulip-LOGO-2-1024x506.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-Purple-Tulip-LOGO-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"cropped-Purple-Tulip-LOGO-2-768x379.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(249,96,'_wp_attached_file','2020/04/cropped-Purple-Tulip-LOGO-1.jpg'),(12,8,'_customize_changeset_uuid','fdc6a4a5-8456-4915-a029-6593548bb703'),(161,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1501;s:6:\"height\";i:739;s:4:\"file\";s:37:\"2020/04/cropped-Purple-Tulip-LOGO.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"cropped-Purple-Tulip-LOGO-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"cropped-Purple-Tulip-LOGO-1024x504.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cropped-Purple-Tulip-LOGO-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"cropped-Purple-Tulip-LOGO-768x378.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160,40,'_wp_attachment_context','custom-logo'),(159,40,'_wp_attached_file','2020/04/cropped-Purple-Tulip-LOGO.jpg'),(165,8,'_edit_last','1'),(166,8,'_wp_page_template','default'),(157,38,'_wp_attachment_is_custom_background','mapro'),(156,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:208;s:4:\"file\";s:44:\"2020/04/Purple-Tulip-LOGO-e1598664861391.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Purple-Tulip-LOGO-e1598664861391-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Purple-Tulip-LOGO-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Purple-Tulip-LOGO-e1598664861391-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Purple-Tulip-LOGO-768x767.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(155,38,'_wp_attached_file','2020/04/Purple-Tulip-LOGO-e1598664861391.jpg'),(154,8,'_edit_lock','1606871468:1'),(250,96,'_wp_attachment_context','site-icon'),(251,96,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2020/04/cropped-Purple-Tulip-LOGO-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-Purple-Tulip-LOGO-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-Purple-Tulip-LOGO-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:39:\"cropped-Purple-Tulip-LOGO-1-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:39:\"cropped-Purple-Tulip-LOGO-1-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:39:\"cropped-Purple-Tulip-LOGO-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:37:\"cropped-Purple-Tulip-LOGO-1-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(164,8,'_bgppb_default_editor','classic'),(187,63,'_wp_attached_file','2020/08/20200612_191836-scaled.jpg'),(188,63,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2020/08/20200612_191836-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200612_191836-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200612_191836-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200612_191836-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20200612_191836-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200612_191836-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200612_191836-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1591989516\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200612_191836.jpg\";}'),(189,64,'_wp_attached_file','2020/08/20200612_191844-scaled.jpg'),(190,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2020/08/20200612_191844-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200612_191844-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200612_191844-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200612_191844-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20200612_191844-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200612_191844-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200612_191844-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1591989524\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200612_191844.jpg\";}'),(191,65,'_wp_attached_file','2020/08/20200612_223346-scaled.jpg'),(192,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/08/20200612_223346-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200612_223346-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200612_223346-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200612_223346-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20200612_223346-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200612_223346-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200612_223346-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592001226\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200612_223346.jpg\";}'),(193,66,'_wp_attached_file','2020/08/20200612_223359-scaled.jpg'),(194,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2020/08/20200612_223359-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200612_223359-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200612_223359-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200612_223359-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20200612_223359-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200612_223359-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200612_223359-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592001239\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200612_223359.jpg\";}'),(195,67,'_wp_attached_file','2020/08/20200612_223548-1-scaled.jpg'),(196,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2020/08/20200612_223548-1-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20200612_223548-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20200612_223548-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20200612_223548-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"20200612_223548-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20200612_223548-1-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"20200612_223548-1-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592001348\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20200612_223548-1.jpg\";}'),(197,68,'_wp_attached_file','2020/08/20200612_223714-scaled.jpg'),(198,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/08/20200612_223714-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200612_223714-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200612_223714-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200612_223714-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20200612_223714-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200612_223714-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200612_223714-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592001434\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200612_223714.jpg\";}'),(199,69,'_wp_attached_file','2020/08/20200613_152609-scaled.jpg'),(200,69,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/08/20200613_152609-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200613_152609-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200613_152609-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200613_152609-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20200613_152609-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200613_152609-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200613_152609-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592061969\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200613_152609.jpg\";}'),(205,72,'_wp_attached_file','2020/08/20200613_162555-scaled.jpg'),(206,72,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/08/20200613_162555-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200613_162555-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200613_162555-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200613_162555-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20200613_162555-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200613_162555-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200613_162555-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592065555\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200613_162555.jpg\";}'),(207,73,'_wp_attached_file','2020/08/20200613_163854-scaled.jpg'),(208,73,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2020/08/20200613_163854-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200613_163854-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200613_163854-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200613_163854-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20200613_163854-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200613_163854-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200613_163854-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592066334\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200613_163854.jpg\";}'),(211,75,'_wp_attached_file','2020/08/20200626_163204.jpg'),(212,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2227;s:6:\"height\";i:1859;s:4:\"file\";s:27:\"2020/08/20200626_163204.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200626_163204-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200626_163204-1024x855.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200626_163204-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20200626_163204-768x641.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200626_163204-1536x1282.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200626_163204-2048x1710.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1710;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593172265\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213,76,'_wp_attached_file','2020/08/20200711_080822-1-scaled.jpg'),(214,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:36:\"2020/08/20200711_080822-1-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20200711_080822-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20200711_080822-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20200711_080822-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"20200711_080822-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20200711_080822-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"20200711_080822-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1594454902\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0061728395061728\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20200711_080822-1.jpg\";}'),(215,77,'_wp_attached_file','2020/08/20200711_080857-scaled.jpg'),(216,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2020/08/20200711_080857-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200711_080857-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200711_080857-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200711_080857-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20200711_080857-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200711_080857-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200711_080857-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1594454937\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0048309178743961\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200711_080857.jpg\";}'),(219,79,'_wp_attached_file','2020/08/20200801_175853-scaled.jpg'),(220,79,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/08/20200801_175853-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200801_175853-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200801_175853-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200801_175853-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20200801_175853-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200801_175853-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200801_175853-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596304733\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200801_175853.jpg\";}'),(221,80,'_wp_attached_file','2020/08/20200802_120818-scaled.jpg'),(222,80,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2020/08/20200802_120818-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200802_120818-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200802_120818-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200802_120818-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20200802_120818-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200802_120818-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200802_120818-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596370098\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200802_120818.jpg\";}'),(223,81,'_wp_attached_file','2020/08/20200802_183309-scaled.jpg'),(224,81,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/08/20200802_183309-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200802_183309-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200802_183309-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200802_183309-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20200802_183309-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200802_183309-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200802_183309-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N960W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596393189\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0045662100456621\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200802_183309.jpg\";}'),(227,83,'_wp_attached_file','2020/08/Khaira__photography-by-cashmere_0G7A0106_big-scaled.jpg'),(228,83,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:63:\"2020/08/Khaira__photography-by-cashmere_0G7A0106_big-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0106_big-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Khaira__photography-by-cashmere_0G7A0106_big-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0106_big-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0106_big-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A0106_big-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A0106_big-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596394590\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"Khaira__photography-by-cashmere_0G7A0106_big.jpg\";}'),(229,84,'_wp_attached_file','2020/08/Khaira__photography-by-cashmere_0G7A0154_big-scaled.jpg'),(230,84,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:63:\"2020/08/Khaira__photography-by-cashmere_0G7A0154_big-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0154_big-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Khaira__photography-by-cashmere_0G7A0154_big-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0154_big-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0154_big-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A0154_big-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A0154_big-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596395684\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"Khaira__photography-by-cashmere_0G7A0154_big.jpg\";}'),(231,85,'_wp_attached_file','2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg'),(232,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:4:\"file\";s:56:\"2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0175_big-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Khaira__photography-by-cashmere_0G7A0175_big-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0175_big-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"Khaira__photography-by-cashmere_0G7A0175_big-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A0175_big-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"20\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596396527\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(233,86,'_wp_attached_file','2020/08/Khaira__photography-by-cashmere_0G7A0279_big-scaled.jpg'),(234,86,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:63:\"2020/08/Khaira__photography-by-cashmere_0G7A0279_big-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0279_big-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Khaira__photography-by-cashmere_0G7A0279_big-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A0279_big-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"Khaira__photography-by-cashmere_0G7A0279_big-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A0279_big-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A0279_big-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596397806\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"Khaira__photography-by-cashmere_0G7A0279_big.jpg\";}'),(235,87,'_wp_attached_file','2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg'),(236,87,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:63:\"2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A9757_big-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Khaira__photography-by-cashmere_0G7A9757_big-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A9757_big-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A9757_big-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A9757_big-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A9757_big-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596390237\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"Khaira__photography-by-cashmere_0G7A9757_big.jpg\";}'),(237,88,'_wp_attached_file','2020/08/Khaira__photography-by-cashmere_0G7A9793_big-scaled.jpg'),(238,88,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:63:\"2020/08/Khaira__photography-by-cashmere_0G7A9793_big-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A9793_big-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Khaira__photography-by-cashmere_0G7A9793_big-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A9793_big-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A9793_big-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A9793_big-1536x1229.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A9793_big-2048x1638.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1638;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596391068\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"Khaira__photography-by-cashmere_0G7A9793_big.jpg\";}'),(239,89,'_wp_attached_file','2020/08/Khaira__photography-by-cashmere_0G7A9809_big-scaled.jpg'),(240,89,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:63:\"2020/08/Khaira__photography-by-cashmere_0G7A9809_big-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A9809_big-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Khaira__photography-by-cashmere_0G7A9809_big-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A9809_big-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Khaira__photography-by-cashmere_0G7A9809_big-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A9809_big-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:58:\"Khaira__photography-by-cashmere_0G7A9809_big-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596391283\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"Khaira__photography-by-cashmere_0G7A9809_big.jpg\";}'),(255,38,'_edit_lock','1598664869:1'),(257,38,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1501;s:6:\"height\";i:1500;s:4:\"file\";s:21:\"Purple-Tulip-LOGO.jpg\";}s:18:\"full-1598664839926\";a:3:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"Purple-Tulip-LOGO-e1598664743421.jpg\";}s:18:\"full-1598664861391\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:36:\"Purple-Tulip-LOGO-e1598664839926.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:29:\"Purple-Tulip-LOGO-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:29:\"Purple-Tulip-LOGO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:29:\"Purple-Tulip-LOGO-768x767.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:31:\"Purple-Tulip-LOGO-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(258,38,'_edit_last','1'),(323,131,'_wp_attached_file','2020/04/cropped-Purple-Tulip-LOGO-e1598664861391.jpg'),(324,131,'_wp_attachment_context','custom-logo'),(325,131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:479;s:6:\"height\";i:250;s:4:\"file\";s:52:\"2020/04/cropped-Purple-Tulip-LOGO-e1598664861391.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"cropped-Purple-Tulip-LOGO-e1598664861391-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"cropped-Purple-Tulip-LOGO-e1598664861391-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(334,134,'_wp_attached_file','2020/08/Purple-Tulip-LOGO.png'),(335,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1501;s:6:\"height\";i:1500;s:4:\"file\";s:29:\"2020/08/Purple-Tulip-LOGO.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Purple-Tulip-LOGO-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Purple-Tulip-LOGO-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Purple-Tulip-LOGO-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Purple-Tulip-LOGO-768x767.png\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:31:\"Purple-Tulip-LOGO-1501x1200.png\";s:5:\"width\";i:1501;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:29:\"Purple-Tulip-LOGO-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:{}}}'),(336,135,'_wp_attached_file','2020/08/cropped-Purple-Tulip-LOGO.png'),(337,135,'_wp_attachment_context','custom-logo'),(338,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:496;s:6:\"height\";i:250;s:4:\"file\";s:37:\"2020/08/cropped-Purple-Tulip-LOGO.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"cropped-Purple-Tulip-LOGO-300x151.png\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cropped-Purple-Tulip-LOGO-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:37:\"cropped-Purple-Tulip-LOGO-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:{}}}'),(355,146,'_menu_item_type','post_type'),(354,144,'_customize_changeset_uuid','e9847eef-6144-44b8-8459-1eff30fbeb73'),(356,146,'_menu_item_menu_item_parent','0'),(357,146,'_menu_item_object_id','144'),(358,146,'_menu_item_object','page'),(359,146,'_menu_item_target',''),(360,146,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(361,146,'_menu_item_xfn',''),(362,146,'_menu_item_url',''),(363,147,'_menu_item_type','custom'),(364,147,'_menu_item_menu_item_parent','0'),(365,147,'_menu_item_object_id','147'),(366,147,'_menu_item_object','custom'),(367,147,'_menu_item_target',''),(368,147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(369,147,'_menu_item_xfn',''),(370,147,'_menu_item_url','http://www.purpletulip.ca'),(449,177,'_wp_page_template','default'),(448,177,'_edit_last','1'),(447,177,'_edit_lock','1629704994:1'),(444,180,'_menu_item_url',''),(443,180,'_menu_item_xfn',''),(442,180,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(441,180,'_menu_item_target',''),(440,180,'_menu_item_object','page'),(439,180,'_menu_item_object_id','177'),(438,180,'_menu_item_menu_item_parent','0'),(435,177,'_customize_changeset_uuid','8ad2c887-9292-4fea-aa65-4acada012f46'),(437,180,'_menu_item_type','post_type'),(400,144,'_edit_lock','1629704916:1'),(401,144,'_edit_last','1'),(402,144,'_wp_page_template','default'),(403,144,'boldgrid_hide_page_title','1'),(404,144,'boldgrid_in_page_containers','1'),(410,159,'_wp_attached_file','2020/08/Plated-Dinner.pdf'),(411,160,'_wp_attached_file','2020/08/Reception-Platters.pdf'),(532,226,'_wp_attached_file','2020/09/Lunch.pdf'),(413,162,'_wp_attached_file','2020/08/Breakfast.pdf'),(414,163,'_wp_attached_file','2020/08/Canapes-Hors-doeuvres.pdf'),(415,164,'_wp_attached_file','2020/08/Dinner-Buffet.pdf'),(423,172,'_wp_attached_file','2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb.jpg'),(424,172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:103:\"2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb-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:{}}}'),(425,172,'_source_url','https://images.unsplash.com/photo-1502472231352-10142bacaba2?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1600&h=900&fit=crop&s=04d2e02e339091fa0657a780da6102bb&.png'),(426,173,'_wp_attached_file','2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops787728f1042186f9489ad9848667214a.jpg'),(427,173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops787728f1042186f9489ad9848667214a.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops787728f1042186f9489ad9848667214a-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops787728f1042186f9489ad9848667214a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops787728f1042186f9489ad9848667214a-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:{}}}'),(428,173,'_source_url','https://images.unsplash.com/photo-1504682153790-007c47b98407?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=787728f1042186f9489ad9848667214a&.png'),(429,174,'_wp_attached_file','2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops35fa0163b11b0ed1d2bb78c933f4eb9a.jpg'),(430,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops35fa0163b11b0ed1d2bb78c933f4eb9a.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops35fa0163b11b0ed1d2bb78c933f4eb9a-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops35fa0163b11b0ed1d2bb78c933f4eb9a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops35fa0163b11b0ed1d2bb78c933f4eb9a-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:{}}}'),(431,174,'_source_url','https://images.unsplash.com/photo-1471193945509-9ad0617afabf?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=35fa0163b11b0ed1d2bb78c933f4eb9a&.png'),(450,177,'boldgrid_hide_page_title','1'),(454,183,'_edit_last','1'),(455,183,'_wp_page_template','default'),(456,183,'boldgrid_hide_page_title','0'),(457,183,'_edit_lock','1629704864:1'),(458,183,'_g_feedback_shortcode_bd93cb3b3a32326831399de671fde78d8e127763','[contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Message\" type=\"textarea\"]'),(459,183,'_g_feedback_shortcode_atts_bd93cb3b3a32326831399de671fde78d8e127763','a:10:{s:2:\"to\";s:21:\"piyush@purpletulip.ca\";s:7:\"subject\";s:23:\"Request for Information\";s:12:\"show_subject\";s:2:\"no\";s:6:\"widget\";i:0;s:2:\"id\";i:183;s:18:\"submit_button_text\";s:6:\"Submit\";s:14:\"customThankyou\";s:0:\"\";s:21:\"customThankyouMessage\";s:30:\"Thank you for your submission!\";s:22:\"customThankyouRedirect\";s:0:\"\";s:10:\"jetpackCRM\";b:1;}'),(460,187,'_menu_item_type','post_type'),(461,187,'_menu_item_menu_item_parent','0'),(462,187,'_menu_item_object_id','183'),(463,187,'_menu_item_object','page'),(464,187,'_menu_item_target',''),(465,187,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(466,187,'_menu_item_xfn',''),(467,187,'_menu_item_url',''),(474,192,'_menu_item_type','post_type'),(473,189,'_customize_changeset_uuid','0586b77d-7396-459b-a7b9-7551172b655f'),(475,192,'_menu_item_menu_item_parent','0'),(476,192,'_menu_item_object_id','189'),(477,192,'_menu_item_object','page'),(478,192,'_menu_item_target',''),(479,192,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(480,192,'_menu_item_xfn',''),(481,192,'_menu_item_url',''),(484,189,'_edit_lock','1629704882:1'),(486,189,'_edit_last','1'),(487,189,'_wp_page_template','default'),(488,189,'boldgrid_hide_page_title','1'),(489,189,'_g_feedback_shortcode_0e46c2fe63ea9856bc08f9432ccd42271f421fb1','[contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"]'),(490,189,'_g_feedback_shortcode_atts_0e46c2fe63ea9856bc08f9432ccd42271f421fb1','a:10:{s:2:\"to\";s:21:\"piyush@purpletulip.ca\";s:7:\"subject\";s:199:\"We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.  \";s:12:\"show_subject\";s:2:\"no\";s:6:\"widget\";i:0;s:2:\"id\";i:189;s:18:\"submit_button_text\";s:6:\"Submit\";s:14:\"customThankyou\";s:0:\"\";s:21:\"customThankyouMessage\";s:30:\"Thank you for your submission!\";s:22:\"customThankyouRedirect\";s:0:\"\";s:10:\"jetpackCRM\";b:1;}'),(492,189,'_g_feedback_shortcode_23203d4ee3a4fcd49c5032c7f49a4a51485a0fc8','[contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"]'),(493,189,'_g_feedback_shortcode_atts_23203d4ee3a4fcd49c5032c7f49a4a51485a0fc8','a:10:{s:2:\"to\";s:21:\"piyush@purpletulip.ca\";s:7:\"subject\";s:28:\"Thank you for your feedback.\";s:12:\"show_subject\";s:2:\"no\";s:6:\"widget\";i:0;s:2:\"id\";i:189;s:18:\"submit_button_text\";s:6:\"Submit\";s:14:\"customThankyou\";s:0:\"\";s:21:\"customThankyouMessage\";s:30:\"Thank you for your submission!\";s:22:\"customThankyouRedirect\";s:0:\"\";s:10:\"jetpackCRM\";b:1;}'),(774,309,'_feedback_extra_fields','a:1:{s:16:\"5_Host or Guest?\";s:10:\"cpxysifdah\";}'),(773,308,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:529:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> Fqbftrupt<br /><br /><b>Email:</b> wilfredfarjgsgd3phi@gmail.com<br /><br /><b>Host or Guest?:</b> 711673<br /><br /><b>Your Valuable Feedback:</b> buying cialis on line canadian pharmacy cialis no prescription cialis generic<br /><br /><br /><hr />Time: January 2, 2021 at 7:48 pm<br />IP Address: 178.159.37.28<br />Contact Form URL: http://www.purpletulip.ca/testimonials/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(507,216,'_feedback_extra_fields','a:0:{}'),(509,216,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:483:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> Davidtooni<br /><br /><b>Email:</b> fedormuravyov1986305a0l@list.ru<br /><br /><b>Message:</b> Igjdfjvkdgvj jfsfcjsjfkj ifjfsifhidjfw iijfosjfd https://mail.ru/?gjvhdfjdfuvdbggf<br /><br /><br /><hr />Time: September 16, 2020 at 8:56 pm<br />IP Address: 156.146.63.185<br />Contact Form URL: http://www.purpletulip.ca/contact-us/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(573,246,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:482:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> Jiwan<br /><br /><b>Email:</b> jiwan.dhillon@hotmail.com<br /><br /><b>Message:</b> Hello!<br />\r\nJust wondering how much it is for a private dining experience? For about 15 people<br /><br /><br /><hr />Time: October 6, 2020 at 10:15 pm<br />IP Address: 70.69.207.33<br />Contact Form URL: http://www.purpletulip.ca/contact-us/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(571,246,'_feedback_extra_fields','a:0:{}'),(771,308,'_feedback_extra_fields','a:1:{s:16:\"5_Host or Guest?\";s:6:\"711673\";}'),(765,306,'_feedback_extra_fields','a:1:{s:16:\"5_Host or Guest?\";s:5:\"Guest\";}'),(768,307,'_feedback_extra_fields','a:1:{s:16:\"5_Host or Guest?\";s:6:\"717419\";}'),(776,309,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:526:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> djlqmvbkoc<br /><br /><b>Email:</b> 8b5f9a3c46aac575bcafb6156d4159ff.roopert@ssemarketing.net<br /><br /><b>Host or Guest?:</b> cpxysifdah<br /><br /><b>Your Valuable Feedback:</b> Muchas gracias. ?Como puedo iniciar sesion?<br /><br /><br /><hr />Time: March 25, 2021 at 9:10 pm<br />IP Address: 195.176.3.20<br />Contact Form URL: http://www.purpletulip.ca/testimonials/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(770,307,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:510:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> Fqbftrupt<br /><br /><b>Email:</b> wilfredfarjgsgd3phi@gmail.com<br /><br /><b>Host or Guest?:</b> 717419<br /><br /><b>Your Valuable Feedback:</b> cialis marke 20mg cialis 20mg pills cialis no prescription<br /><br /><br /><hr />Time: January 1, 2021 at 2:02 am<br />IP Address: 178.159.37.28<br />Contact Form URL: http://www.purpletulip.ca/testimonials/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(767,306,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:547:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> BJ<br /><br /><b>Email:</b> jsl53@hotmail.com<br /><br /><b>Host or Guest?:</b> Guest<br /><br /><b>Your Valuable Feedback:</b> Tasteless food. Terrible service are you sure you guys know how to cook?<br />\r\n<br />\r\nPathetic customer service.<br /><br /><br /><hr />Time: December 2, 2020 at 6:11 am<br />IP Address: 174.1.73.115<br />Contact Form URL: https://www.purpletulip.ca/testimonials/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(761,301,'_wp_attached_file','2020/10/Traditional-Indian-Buffet.pdf'),(553,240,'_feedback_extra_fields','a:0:{}'),(555,240,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:894:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> Maariya Khan<br /><br /><b>Email:</b> maarzandsaabz@gmail.com<br /><br /><b>Message:</b> Hi, <br />\r\n<br />\r\nWe are planning our wedding for March 20, 2021, at American Creek Lodge in Hope BC. We are inquiring about your catering services for about 50-100 guests. <br />\r\n<br />\r\nWe would require halal meats to be used. We are hoping to create a menu that is east African/Indian fusion. We would require the cooking,  plates, glasses, cutlery, set up of food, and clean up.  We are hoping to stay within our budget of $4000<br />\r\n<br />\r\nPlease let me know if you have any other questions<br /><br /><br /><hr />Time: September 23, 2020 at 4:03 am<br />IP Address: 207.6.18.83<br />Contact Form URL: https://www.purpletulip.ca/contact-us/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(556,241,'_feedback_extra_fields','a:0:{}'),(558,241,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:511:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> Jesse Hill<br /><br /><b>Email:</b> jessehill@gmx.com<br /><br /><b>Message:</b> Interested in working for you, have several experience in casual/fine dining, and catering, please call me at 6043148496.<br /><br /><br /><hr />Time: September 24, 2020 at 12:20 am<br />IP Address: 205.250.118.239<br />Contact Form URL: https://www.purpletulip.ca/contact-us/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(622,269,'_feedback_extra_fields','a:0:{}'),(624,269,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:563:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> Amanat Sandhu<br /><br /><b>Email:</b> amanat13@hotmail.com<br /><br /><b>Message:</b> Hi, <br />\r\n<br />\r\nLooking to book you for catering services on April 19th (Monday) and possibly April 15th. for about 50-60 guests (more depending on covid restrictions)<br /><br /><br /><hr />Time: October 19, 2020 at 9:12 pm<br />IP Address: 192.234.199.210<br />Contact Form URL: http://www.purpletulip.ca/contact-us/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(637,274,'_feedback_extra_fields','a:0:{}'),(639,274,'_feedback_email','a:2:{s:2:\"to\";a:1:{i:0;s:32:\"\"piyush\" <piyush@purpletulip.ca>\";}s:7:\"message\";s:968:\"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<body>\n\n<b>Name:</b> Linda Ray<br /><br /><b>Email:</b> linda.ray@theremarketingguys.com<br /><br /><b>Message:</b> I noticed that you are not running Google Remarketing on your website. <br />\r\n <br />\r\nThe most affordable advertising is marketing to previous web viewers who didn\'t convert. <br />\r\n <br />\r\nRemarketing via Google &amp; Facebook ads means tracking and engaging these \'lost\' customers. <br />\r\nThey were on your site once and may only need a reminder of your services and business. <br />\r\n <br />\r\nCan I help you grab these low hanging fruits? <br />\r\n <br />\r\nLinda Ray <br />\r\nEmail - linda@theremarketingguys.com <br />\r\nWebsite - http://www.theremarketingguys.com<br /><br /><br /><hr />Time: October 20, 2020 at 7:58 pm<br />IP Address: 151.106.8.108<br />Contact Form URL: http://www.purpletulip.ca/contact-us/<br /><p>Sent by an unverified visitor to your site.</p>\n\n</body>\n</html>\";}'),(640,276,'wpuf_form_settings','a:49:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:0:\"\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:12:\"Submit Query\";s:18:\"submit_button_cond\";O:8:\"stdClass\":3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:39:\"Form submission hasn\'t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:3:\"100\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";s:13:\"use_theme_css\";s:10:\"wpuf-style\";s:9:\"quiz_form\";s:2:\"no\";s:22:\"shuffle_question_order\";s:2:\"no\";s:13:\"release_grade\";s:16:\"after_submission\";s:18:\"respondent_can_see\";a:3:{i:0;s:16:\"missed_questions\";i:1;s:15:\"correct_answers\";i:2;s:12:\"point_values\";}s:12:\"total_points\";i:0;s:16:\"enable_multistep\";b:0;s:26:\"multistep_progressbar_type\";s:11:\"progressive\";s:21:\"payment_paypal_images\";s:68:\"https://www.paypalobjects.com/webstatic/mktg/logo/AM_mc_vs_dc_ae.jpg\";s:20:\"payment_paypal_label\";s:6:\"PayPal\";s:20:\"payment_stripe_label\";s:11:\"Credit Card\";s:21:\"payment_stripe_images\";a:4:{i:0;s:4:\"visa\";i:1;s:10:\"mastercard\";i:2;s:4:\"amex\";i:3;s:8:\"discover\";}s:25:\"payment_stripe_deactivate\";s:0:\"\";s:11:\"stripe_mode\";s:4:\"live\";s:14:\"stripe_page_id\";s:0:\"\";s:20:\"stripe_override_keys\";s:0:\"\";s:12:\"stripe_email\";s:0:\"\";s:10:\"stripe_key\";s:0:\"\";s:17:\"stripe_secret_key\";s:0:\"\";s:15:\"stripe_key_test\";s:0:\"\";s:22:\"stripe_secret_key_test\";s:0:\"\";s:20:\"stripe_prefill_email\";s:0:\"\";s:23:\"stripe_user_email_field\";s:0:\"\";s:25:\"payment_paypal_deactivate\";s:0:\"\";s:11:\"paypal_mode\";s:4:\"live\";s:11:\"paypal_type\";s:5:\"_cart\";s:15:\"paypal_override\";s:0:\"\";s:12:\"paypal_email\";s:0:\"\";s:14:\"paypal_page_id\";s:0:\"\";s:20:\"paypal_prefill_email\";s:0:\"\";s:23:\"paypal_user_email_field\";s:0:\"\";s:10:\"sharing_on\";s:2:\"on\";}'),(641,276,'notifications','a:1:{i:0;a:14:{s:6:\"active\";s:4:\"true\";s:4:\"type\";s:5:\"email\";s:5:\"smsTo\";s:0:\"\";s:7:\"smsText\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:13:\"{field:email}\";s:7:\"message\";s:19:\"<p>{all_fields}</p>\";s:8:\"fromName\";s:11:\"{site_name}\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"weforms_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}}}'),(642,276,'integrations','a:1:{s:5:\"slack\";O:8:\"stdClass\":2:{s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";}}'),(757,276,'_weforms_view_count','1176'),(758,276,'_weforms_version','1.4.9');
/*!40000 ALTER TABLE `wpw8_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_posts`
--

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

--
-- Dumping data for table `wpw8_posts`
--

LOCK TABLES `wpw8_posts` WRITE;
/*!40000 ALTER TABLE `wpw8_posts` DISABLE KEYS */;
INSERT INTO `wpw8_posts` VALUES (4,0,'2020-04-22 03:53:01','2020-04-22 03:53:01','<p>This site has been created with the help of many different people and companies.</p><hr /><p style=\"clear:both\">This  site was built on a powerful, Inspirations based web builder called <a href=\"http://www.boldgrid.com\" target=\"_blank\" rel=\"noopener\">BoldGrid</a>. It is running on <a href=\"http://wordpress.org\" target=\"_blank\" rel=\"noopener\">WordPress</a>, the most popular content management software online today.</p>','Attribution','','publish','closed','closed','','attribution','','','2021-04-15 11:35:39','2021-04-15 11:35:39','',0,'http://www.purpletulip.ca/attribution/',0,'bg_attribution','',0),(159,1,'2020-08-29 19:09:57','2020-08-29 19:09:57','','Plated Dinner','','inherit','open','closed','','plated-dinner','','','2020-08-29 19:23:40','2020-08-29 19:23:40','',144,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf',0,'attachment','application/pdf',0),(160,1,'2020-08-29 19:10:01','2020-08-29 19:10:01','','Reception Platters','','inherit','open','closed','','reception-platters','','','2020-08-29 19:24:00','2020-08-29 19:24:00','',144,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf',0,'attachment','application/pdf',0),(226,1,'2020-09-19 02:46:07','2020-09-19 02:46:07','','Lunch','','inherit','open','closed','','lunch','','','2020-09-19 02:46:07','2020-09-19 02:46:07','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/09/Lunch.pdf',0,'attachment','application/pdf',0),(162,1,'2020-08-29 19:10:07','2020-08-29 19:10:07','','Breakfast','','inherit','open','closed','','breakfast-2','','','2020-08-29 19:12:06','2020-08-29 19:12:06','',144,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf',0,'attachment','application/pdf',0),(163,1,'2020-08-29 19:10:10','2020-08-29 19:10:10','','Canapes & Hors d\'oeuvres','','inherit','open','closed','','canapes-hors-doeuvres','','','2020-08-29 19:23:52','2020-08-29 19:23:52','',144,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf',0,'attachment','application/pdf',0),(164,1,'2020-08-29 19:10:14','2020-08-29 19:10:14','','Dinner Buffet','','inherit','open','closed','','dinner-buffet-2','','','2020-08-29 19:22:25','2020-08-29 19:22:25','',144,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf',0,'attachment','application/pdf',0),(308,0,'2021-01-02 19:48:54','2021-01-02 19:48:54','buying cialis on line canadian pharmacy cialis no prescription cialis generic\n<!--more-->\nAUTHOR: Fqbftrupt\nAUTHOR EMAIL: wilfredfarjgsgd3phi@gmail.com\nAUTHOR URL: \nSUBJECT: Thank you for your feedback.\nIP: 178.159.37.28\nArray\n(\n    [1_Name] =&gt; Fqbftrupt\n    [2_Email] =&gt; wilfredfarjgsgd3phi@gmail.com\n    [3_Host or Guest?] =&gt; 711673\n    [4_Your Valuable Feedback] =&gt; buying cialis on line canadian pharmacy cialis no prescription cialis generic\n    [email_marketing_consent] =&gt; \n    [entry_title] =&gt; Testimonials\n    [entry_permalink] =&gt; http://www.purpletulip.ca/testimonials/\n    [feedback_id] =&gt; 6432aa038bb698751a3dcaf677e171b7\n)\n','Fqbftrupt - 2021-01-02 19:48:54','','publish','closed','closed','','6432aa038bb698751a3dcaf677e171b7','','','2021-01-02 19:48:54','2021-01-02 19:48:54','',189,'http://www.purpletulip.ca/?post_type=feedback&p=308',0,'feedback','',0),(306,0,'2020-12-02 06:11:59','2020-12-02 06:11:59','Tasteless food. Terrible service are you sure you guys know how to cook?\r\n\r\nPathetic customer service.\n<!--more-->\nAUTHOR: BJ\nAUTHOR EMAIL: jsl53@hotmail.com\nAUTHOR URL: \nSUBJECT: Thank you for your feedback.\nIP: 174.1.73.115\nArray\n(\n    [1_Name] =&gt; BJ\n    [2_Email] =&gt; jsl53@hotmail.com\n    [3_Host or Guest?] =&gt; Guest\n    [4_Your Valuable Feedback] =&gt; Tasteless food. Terrible service are you sure you guys know how to cook?\r\n\r\nPathetic customer service.\n    [email_marketing_consent] =&gt; \n    [entry_title] =&gt; Testimonials\n    [entry_permalink] =&gt; https://www.purpletulip.ca/testimonials/\n    [feedback_id] =&gt; 9c7a305d084380b23de60a58ace7ad4e\n)\n','BJ - 2020-12-02 06:11:59','','publish','closed','closed','','9c7a305d084380b23de60a58ace7ad4e','','','2020-12-02 06:11:59','2020-12-02 06:11:59','',189,'https://www.purpletulip.ca/?post_type=feedback&p=306',0,'feedback','',0),(8,1,'2020-04-22 03:58:34','2020-04-22 03:58:34','<!-- wp:paragraph -->\n<p>Purple Tulip is a chef driven catering company that brings you unique and bold flavors form an award winning chef and a dynamic culinary team. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Catering to a global palate using their inspiration from travel across the globe, our culinary team brings to you trendy upscale cuisine with rich influences from various robust cuisines. We re-imagine comfort food and as well as Indian cuisine in a creative and fun way. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you are looking to host an intimate dinner with family or celebrating an event with your friends. Purple Tulip can cater to all your needs with delectable offerings that will leave your guests dazzled. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to Indian Cuisine, we have a very unique take on food from across the Indian subcontinent with balanced and refined flavors, amazing presentation and interpretation that will leave your guests wowed. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our updated website coming soon. In the interim, please visit our <a href=\"https://www.instagram.com/purpletulipcatering/?hl=en\">Instagram</a> page. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[38,12,13,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93],\"columns\":3,\"align\":\"center\"} -->\n<figure class=\"wp-block-gallery aligncenter columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/Purple-Tulip-LOGO-1024x1024.jpg\" alt=\"\" data-id=\"38\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/Purple-Tulip-LOGO.jpg\" data-link=\"http://www.purpletulip.ca/purple-tulip-logo/\" class=\"wp-image-38\"/><figcaption class=\"blocks-gallery-item__caption\">Purple Tulip Catering</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/070111CUFSA0646-1024x681.jpg\" alt=\"\" data-id=\"12\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/070111CUFSA0646-scaled.jpg\" data-link=\"http://www.purpletulip.ca/070111cufsa0646/\" class=\"wp-image-12\"/><figcaption class=\"blocks-gallery-item__caption\">Pickerel cheek ceviche, Aztec gold cocktail, compressed avocado, pancetta</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/IMG_0482-Copy-1024x666.jpg\" alt=\"\" data-id=\"13\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/IMG_0482-Copy.jpg\" data-link=\"http://www.purpletulip.ca/img_0482-copy/\" class=\"wp-image-13\"/><figcaption class=\"blocks-gallery-item__caption\">Drunken tomato caprese</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-768x1024.jpg\" alt=\"\" data-id=\"61\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka.jpg\" data-link=\"http://www.purpletulip.ca/about/zafrani-tikka/\" class=\"wp-image-61\"/><figcaption class=\"blocks-gallery-item__caption\">Zaffrani tikka, mango mint chutney | Saffron chicken tikka, mango mint chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200329_144158-1024x768.jpg\" alt=\"\" data-id=\"62\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200329_144158-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200329_144158/\" class=\"wp-image-62\"/><figcaption class=\"blocks-gallery-item__caption\">Chicken ghee roast</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191836-1024x768.jpg\" alt=\"\" data-id=\"63\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191836-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_191836/\" class=\"wp-image-63\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191844-1024x768.jpg\" alt=\"\" data-id=\"64\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191844-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_191844/\" class=\"wp-image-64\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223346-768x1024.jpg\" alt=\"\" data-id=\"65\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223346-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223346/\" class=\"wp-image-65\"/><figcaption class=\"blocks-gallery-item__caption\">Makhana kheer | Foxnut pudding</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223359-1024x768.jpg\" alt=\"\" data-id=\"66\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223359-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223359/\" class=\"wp-image-66\"/><figcaption class=\"blocks-gallery-item__caption\">Hydration station</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223548-1-768x1024.jpg\" alt=\"\" data-id=\"67\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223548-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223548-1/\" class=\"wp-image-67\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223714-768x1024.jpg\" alt=\"\" data-id=\"68\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223714-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223714/\" class=\"wp-image-68\"/><figcaption class=\"blocks-gallery-item__caption\">Mini rice bowls</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_152609-768x1024.jpg\" alt=\"\" data-id=\"69\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_152609-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_152609/\" class=\"wp-image-69\"/><figcaption class=\"blocks-gallery-item__caption\">Rose yogurt pudding</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_154800-768x1024.jpg\" alt=\"\" data-id=\"70\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_154800-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_154800/\" class=\"wp-image-70\"/><figcaption class=\"blocks-gallery-item__caption\">Alu tikki sphere chaat | Potato sphere, tamarind sauce, cilantro chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_161310-768x1024.jpg\" alt=\"\" data-id=\"71\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_161310-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_161310/\" class=\"wp-image-71\"/><figcaption class=\"blocks-gallery-item__caption\">Tandoori spice grilled salmon</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_162555-768x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_162555-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_162555/\" class=\"wp-image-72\"/><figcaption class=\"blocks-gallery-item__caption\">Chole bhature cornets</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_163854-1024x768.jpg\" alt=\"\" data-id=\"73\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_163854-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_163854/\" class=\"wp-image-73\"/><figcaption class=\"blocks-gallery-item__caption\">Basket chaat | Tangy potato salad in potato baskets</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_153754-1024x768.jpg\" alt=\"\" data-id=\"74\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_153754-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200626_153754/\" class=\"wp-image-74\"/><figcaption class=\"blocks-gallery-item__caption\">Prawn \'Balchao\', avocado chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_163204-1024x855.jpg\" alt=\"\" data-id=\"75\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_163204.jpg\" data-link=\"http://www.purpletulip.ca/about/20200626_163204/\" class=\"wp-image-75\"/><figcaption class=\"blocks-gallery-item__caption\">Pineapple \'Sandesh\' | Pineapple with soft cheese topping Cac</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080822-1-1024x768.jpg\" alt=\"\" data-id=\"76\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080822-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200711_080822-1/\" class=\"wp-image-76\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080857-1024x768.jpg\" alt=\"\" data-id=\"77\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080857-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200711_080857/\" class=\"wp-image-77\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200721_184404-768x1024.jpg\" alt=\"\" data-id=\"78\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200721_184404-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200721_184404/\" class=\"wp-image-78\"/><figcaption class=\"blocks-gallery-item__caption\">Motichoor, pineapple halwa, masala milk foam</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200801_175853-768x1024.jpg\" alt=\"\" data-id=\"79\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200801_175853-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200801_175853/\" class=\"wp-image-79\"/><figcaption class=\"blocks-gallery-item__caption\">Baked mango yogurt</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_120818-1024x768.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_120818-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200802_120818/\" class=\"wp-image-80\"/><figcaption class=\"blocks-gallery-item__caption\">Summer salad with citrus and ginger dressing</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_183309-768x1024.jpg\" alt=\"\" data-id=\"81\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_183309-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200802_183309/\" class=\"wp-image-81\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200808_180916-768x1024.jpg\" alt=\"\" data-id=\"82\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200808_180916-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200808_180916/\" class=\"wp-image-82\"/><figcaption class=\"blocks-gallery-item__caption\">Butter chicken ravioli</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0106_big-1024x683.jpg\" alt=\"\" data-id=\"83\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0106_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0106_big/\" class=\"wp-image-83\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0154_big-1024x683.jpg\" alt=\"\" data-id=\"84\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0154_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0154_big/\" class=\"wp-image-84\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big-683x1024.jpg\" alt=\"\" data-id=\"85\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0175_big/\" class=\"wp-image-85\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0279_big-683x1024.jpg\" alt=\"\" data-id=\"86\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0279_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0279_big/\" class=\"wp-image-86\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-1024x683.jpg\" alt=\"\" data-id=\"87\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9757_big/\" class=\"wp-image-87\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9793_big-1024x819.jpg\" alt=\"\" data-id=\"88\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9793_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9793_big/\" class=\"wp-image-88\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9809_big-1024x683.jpg\" alt=\"\" data-id=\"89\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9809_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9809_big/\" class=\"wp-image-89\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9861_big-1024x683.jpg\" alt=\"\" data-id=\"90\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9861_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9861_big/\" class=\"wp-image-90\"/><figcaption class=\"blocks-gallery-item__caption\">Seekh kebab naan rolls</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9864_big-1-1024x819.jpg\" alt=\"\" data-id=\"91\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9864_big-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9864_big-2/\" class=\"wp-image-91\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/SmartSelect_20200718-145513_WhatsApp-1-1024x705.jpg\" alt=\"\" data-id=\"92\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/SmartSelect_20200718-145513_WhatsApp-1.jpg\" data-link=\"http://www.purpletulip.ca/about/smartselect_20200718-145513_whatsapp-2/\" class=\"wp-image-92\"/><figcaption class=\"blocks-gallery-item__caption\">Iconic \'Bombay\" vada pao</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-1-768x1024.jpg\" alt=\"\" data-id=\"93\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-1.jpg\" data-link=\"http://www.purpletulip.ca/about/zafrani-tikka-2/\" class=\"wp-image-93\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Purple Tulip Catering','','publish','closed','closed','','about','','','2020-08-29 01:43:47','2020-08-29 01:43:47','',0,'http://www.purpletulip.ca/?page_id=8',0,'page','',0),(140,1,'2020-08-29 05:45:12','2020-08-29 05:45:12','<iframe title=\"City at Night\" width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5LxGNTTxPis?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','1ad0fe5f0d83c4490e038e6c19bd9e3f','','','2020-08-29 05:45:12','2020-08-29 05:45:12','',0,'http://www.purpletulip.ca/2020/08/29/1ad0fe5f0d83c4490e038e6c19bd9e3f/',0,'oembed_cache','',0),(144,1,'2020-08-29 06:26:29','2020-08-29 06:26:29','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n<p class=\"\">Below are some of our popular menus. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. We work closely with you and your event planner to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Lunch.pdf\">Lunch</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/10/Traditional-Indian-Buffet.pdf\">Traditional Indian Buffet</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','publish','closed','closed','','menus','','','2021-08-23 07:47:25','2021-08-23 07:47:25','',0,'http://www.purpletulip.ca/?page_id=144',0,'page','',0),(311,1,'2021-08-23 07:47:25','2021-08-23 07:47:25','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n<p class=\"\">Below are some of our popular menus. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. We work closely with you and your event planner to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Lunch.pdf\">Lunch</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/10/Traditional-Indian-Buffet.pdf\">Traditional Indian Buffet</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2021-08-23 07:47:25','2021-08-23 07:47:25','',144,'http://www.purpletulip.ca/2021/08/23/144-revision-v1/',0,'revision','',0),(252,1,'2020-10-07 19:23:22','2020-10-07 19:23:22','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" data-font-weight=\"600\">Purple Tulip caters fine global cuisine as well as modern &amp; traditional Indian cuisine for your event. Providing unsurpassed quality, our food is curated by an award winning chef who has catered to celebrities like HH Dalai Lama, Rev. Bishop Tutu, Emperor &amp; Empress of Japan to name a few. With over 25 years of culinary experience in countries across the globe and with multiple gold and silver medal wins in culinary challenges, our chef brings you his finely honed culinary skills curating an experience which will wow your guests at your next event.</p>\r\n<p class=\"\">We specialize in custom menus to fit your event, be it a sit down dinner, cocktail reception, live action stations or family style meals.&nbsp; The food is always fresh, flavorful and artistically displayed in a fun and trendy manner.</p>\r\nIf you wish to amaze your guests at your next event, look no further than Purple Tulip Catering to delight your guests and make your event memorable.\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','177-autosave-v1','','','2020-10-07 19:23:22','2020-10-07 19:23:22','',177,'http://www.purpletulip.ca/2020/10/07/177-autosave-v1/',0,'revision','',0),(254,1,'2020-10-07 19:24:21','2020-10-07 19:24:21','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 22px;\" data-font-weight=\"600\">About us</p>\r\n<p class=\"\" style=\"font-size: 21px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">Purple Tulip caters fine global cuisine as well as modern &amp; traditional Indian cuisine for your event. Providing unsurpassed quality, our food is curated by an award winning chef who has catered to celebrities like HH Dalai Lama, Rev. Bishop Tutu, Emperor &amp; Empress of Japan to name a few. With over 25 years of culinary experience in countries across the globe and with multiple gold and silver medal wins in culinary challenges, our chef brings you his finely honed culinary skills curating an experience which will wow your guests at your next event.</span></p>\r\n<p class=\"\" style=\"font-size: 20px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">We specialize in custom menus to fit your event, be it a sit down dinner, cocktail reception, live action stations or family style meals.&nbsp; The food is always fresh, flavorful and artistically displayed in a fun and trendy manner.</span></p>\r\n<p class=\"\" style=\"font-size: 20px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">If you wish to amaze your guests at your next event, look no further than Purple Tulip Catering to delight your guests and make your event memorable.</span></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<!--more-->\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','177-revision-v1','','','2020-10-07 19:24:21','2020-10-07 19:24:21','',177,'http://www.purpletulip.ca/2020/10/07/177-revision-v1/',0,'revision','',0),(145,1,'2020-08-29 06:26:29','2020-08-29 06:26:29','','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-08-29 06:26:29','2020-08-29 06:26:29','',144,'http://www.purpletulip.ca/2020/08/29/144-revision-v1/',0,'revision','',0),(146,1,'2020-08-29 06:26:29','2020-08-29 06:26:29',' ','','','publish','closed','closed','','146','','','2020-08-29 21:14:28','2020-08-29 21:14:28','',0,'http://www.purpletulip.ca/2020/08/29/146/',3,'nav_menu_item','',0),(147,1,'2020-08-29 06:26:29','2020-08-29 06:26:29','','Home','','publish','closed','closed','','home','','','2020-08-29 06:26:29','2020-08-29 06:26:29','',0,'http://www.purpletulip.ca/2020/08/29/home/',1,'nav_menu_item','',0),(177,1,'2020-08-29 19:55:41','2020-08-29 19:55:41','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 22px;\" data-font-weight=\"600\">About us</p>\r\n<p class=\"\" style=\"font-size: 21px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">Purple Tulip caters fine global cuisine as well as modern &amp; traditional Indian cuisine for your event. Providing unsurpassed quality, our chef brings you his finely honed culinary skills curating an experience which will wow your guests at your next event.</span></p>\r\n<p class=\"\" style=\"font-size: 20px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">We specialize in custom menus to fit your event, be it a sit down dinner, cocktail reception, live action stations or family style meals.&nbsp; The food is always fresh, flavorful and artistically displayed in a fun and trendy manner.</span></p>\r\n<p class=\"\" style=\"font-size: 20px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">If you wish to amaze your guests at your next event, look no further than Purple Tulip Catering to delight your guests and make your event memorable.</span></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\"><!--more--></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','publish','closed','closed','','about-us','','','2021-08-23 07:49:52','2021-08-23 07:49:52','',0,'http://www.purpletulip.ca/?page_id=177',0,'page','',0),(312,1,'2021-08-23 07:49:52','2021-08-23 07:49:52','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 22px;\" data-font-weight=\"600\">About us</p>\r\n<p class=\"\" style=\"font-size: 21px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">Purple Tulip caters fine global cuisine as well as modern &amp; traditional Indian cuisine for your event. Providing unsurpassed quality, our chef brings you his finely honed culinary skills curating an experience which will wow your guests at your next event.</span></p>\r\n<p class=\"\" style=\"font-size: 20px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">We specialize in custom menus to fit your event, be it a sit down dinner, cocktail reception, live action stations or family style meals.&nbsp; The food is always fresh, flavorful and artistically displayed in a fun and trendy manner.</span></p>\r\n<p class=\"\" style=\"font-size: 20px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">If you wish to amaze your guests at your next event, look no further than Purple Tulip Catering to delight your guests and make your event memorable.</span></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\"><!--more--></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','177-revision-v1','','','2021-08-23 07:49:52','2021-08-23 07:49:52','',177,'http://www.purpletulip.ca/2021/08/23/177-revision-v1/',0,'revision','',0),(154,1,'2020-08-29 19:09:17','2020-08-29 19:09:17','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\">&nbsp;Breakfast&nbsp;&nbsp;</p>\r\n<p class=\"\">&nbsp;Lunch&nbsp;</p>\r\n<p class=\"\">&nbsp;Dinner&nbsp;</p>\r\n<p class=\"\">&nbsp;Canapés &amp; Hors d’oeuvres</p>\r\n<p class=\"\">&nbsp;Reception Platters&nbsp;</p>\r\n<p class=\"\">&nbsp;Plated Dinner</p>\r\n<p class=\"\">&nbsp;Indian Inspired Plated Dinner&nbsp;</p>\r\n<p class=\"\">&nbsp;Indian inspired appetizers</p>\r\n<p class=\"\">&nbsp;Indian inspired grazing Stations (Chef attended)</p>\r\n<p class=\"\">&nbsp;Sweet Endings&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-08-29 19:09:17','2020-08-29 19:09:17','',144,'http://www.purpletulip.ca/2020/08/29/144-revision-v1/',0,'revision','',0),(151,1,'2020-08-29 06:53:07','2020-08-29 06:53:07','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\">&nbsp;Breakfast&nbsp;&nbsp;</p>\r\n<p class=\"\">&nbsp;Breakfast Packages&nbsp;</p>\r\n<p class=\"\">&nbsp;Lunch Bowls&nbsp;</p>\r\n<p class=\"\">&nbsp;Dinner Buffet&nbsp;</p>\r\n<p class=\"\">&nbsp;Cold Canapés</p>\r\n<p class=\"\">&nbsp;Hot Hors d’oeuvres</p>\r\n<p class=\"\">&nbsp;Reception Platters&nbsp;</p>\r\n<p class=\"\">&nbsp;Plated Dinner</p>\r\n<p class=\"\">&nbsp;Indian Inspired Plated Dinner&nbsp;</p>\r\n<p class=\"\">&nbsp;Indian inspired appetizers</p>\r\n<p class=\"\">&nbsp;Indian inspired grazing Stations (Chef attended)</p>\r\n<p class=\"\">&nbsp;Sweet Endings&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-08-29 06:53:07','2020-08-29 06:53:07','',144,'http://www.purpletulip.ca/2020/08/29/144-revision-v1/',0,'revision','',0),(15,1,'2020-04-22 03:58:34','2020-04-22 03:58:34','<!-- wp:paragraph -->\n<p>You might be an artist who would like to introduce yourself and your work here or maybe you&rsquo;re a business with a mission to describe.</p>\n<!-- /wp:paragraph -->','About','','inherit','closed','closed','','8-revision-v1','','','2020-04-22 03:58:34','2020-04-22 03:58:34','',8,'http://www.purpletulip.ca/2020/04/22/8-revision-v1/',0,'revision','',0),(94,1,'2020-08-29 01:00:58','2020-08-29 01:00:58','<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"customFontSize\":25} -->\n<p style=\"font-size:25px\" class=\"has-text-color has-vivid-red-color\">Updated website coming soon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the interim, please visit our <a href=\"https://www.instagram.com/purpletulipcatering/?hl=en\">Instagram</a> page. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[12,13,38,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93]} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/070111CUFSA0646-1024x681.jpg\" alt=\"\" data-id=\"12\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/070111CUFSA0646-scaled.jpg\" data-link=\"http://www.purpletulip.ca/070111cufsa0646/\" class=\"wp-image-12\"/><figcaption class=\"blocks-gallery-item__caption\">Pickerel cheek ceviche, Aztec gold cocktail, compressed avocado, pancetta</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/IMG_0482-Copy-1024x666.jpg\" alt=\"\" data-id=\"13\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/IMG_0482-Copy.jpg\" data-link=\"http://www.purpletulip.ca/img_0482-copy/\" class=\"wp-image-13\"/><figcaption class=\"blocks-gallery-item__caption\">Drunken tomato caprese</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/Purple-Tulip-LOGO-1024x1024.jpg\" alt=\"\" data-id=\"38\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/Purple-Tulip-LOGO.jpg\" data-link=\"http://www.purpletulip.ca/purple-tulip-logo/\" class=\"wp-image-38\"/><figcaption class=\"blocks-gallery-item__caption\">Purple Tulip Catering</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-768x1024.jpg\" alt=\"\" data-id=\"61\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka.jpg\" data-link=\"http://www.purpletulip.ca/about/zafrani-tikka/\" class=\"wp-image-61\"/><figcaption class=\"blocks-gallery-item__caption\">Zaffrani tikka, mango mint chutney | Saffron chicken tikka, mango mint chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200329_144158-1024x768.jpg\" alt=\"\" data-id=\"62\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200329_144158-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200329_144158/\" class=\"wp-image-62\"/><figcaption class=\"blocks-gallery-item__caption\">Chicken ghee roast</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191836-1024x768.jpg\" alt=\"\" data-id=\"63\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191836-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_191836/\" class=\"wp-image-63\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191844-1024x768.jpg\" alt=\"\" data-id=\"64\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191844-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_191844/\" class=\"wp-image-64\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223346-768x1024.jpg\" alt=\"\" data-id=\"65\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223346-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223346/\" class=\"wp-image-65\"/><figcaption class=\"blocks-gallery-item__caption\">Makhana kheer | Foxnut pudding</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223359-1024x768.jpg\" alt=\"\" data-id=\"66\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223359-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223359/\" class=\"wp-image-66\"/><figcaption class=\"blocks-gallery-item__caption\">Hydration station</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223548-1-768x1024.jpg\" alt=\"\" data-id=\"67\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223548-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223548-1/\" class=\"wp-image-67\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223714-768x1024.jpg\" alt=\"\" data-id=\"68\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223714-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223714/\" class=\"wp-image-68\"/><figcaption class=\"blocks-gallery-item__caption\">Mini rice bowls</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_152609-768x1024.jpg\" alt=\"\" data-id=\"69\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_152609-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_152609/\" class=\"wp-image-69\"/><figcaption class=\"blocks-gallery-item__caption\">Rose yogurt pudding</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_154800-768x1024.jpg\" alt=\"\" data-id=\"70\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_154800-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_154800/\" class=\"wp-image-70\"/><figcaption class=\"blocks-gallery-item__caption\">Alu tikki sphere chaat | Potato sphere, tamarind sauce, cilantro chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_161310-768x1024.jpg\" alt=\"\" data-id=\"71\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_161310-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_161310/\" class=\"wp-image-71\"/><figcaption class=\"blocks-gallery-item__caption\">Tandoori spice grilled salmon</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_162555-768x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_162555-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_162555/\" class=\"wp-image-72\"/><figcaption class=\"blocks-gallery-item__caption\">Chole bhature cornets</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_163854-1024x768.jpg\" alt=\"\" data-id=\"73\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_163854-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_163854/\" class=\"wp-image-73\"/><figcaption class=\"blocks-gallery-item__caption\">Basket chaat | Tangy potato salad in potato baskets</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_153754-1024x768.jpg\" alt=\"\" data-id=\"74\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_153754-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200626_153754/\" class=\"wp-image-74\"/><figcaption class=\"blocks-gallery-item__caption\">Prawn \'Balchao\', avocado chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_163204-1024x855.jpg\" alt=\"\" data-id=\"75\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_163204.jpg\" data-link=\"http://www.purpletulip.ca/about/20200626_163204/\" class=\"wp-image-75\"/><figcaption class=\"blocks-gallery-item__caption\">Pineapple \'Sandesh\' | Pineapple with soft cheese topping Cac</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080822-1-1024x768.jpg\" alt=\"\" data-id=\"76\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080822-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200711_080822-1/\" class=\"wp-image-76\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080857-1024x768.jpg\" alt=\"\" data-id=\"77\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080857-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200711_080857/\" class=\"wp-image-77\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200721_184404-768x1024.jpg\" alt=\"\" data-id=\"78\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200721_184404-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200721_184404/\" class=\"wp-image-78\"/><figcaption class=\"blocks-gallery-item__caption\">Motichoor, pineapple halwa, masala milk foam</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200801_175853-768x1024.jpg\" alt=\"\" data-id=\"79\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200801_175853-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200801_175853/\" class=\"wp-image-79\"/><figcaption class=\"blocks-gallery-item__caption\">Baked mango yogurt</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_120818-1024x768.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_120818-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200802_120818/\" class=\"wp-image-80\"/><figcaption class=\"blocks-gallery-item__caption\">Summer salad with citrus and ginger dressing</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_183309-768x1024.jpg\" alt=\"\" data-id=\"81\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_183309-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200802_183309/\" class=\"wp-image-81\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200808_180916-768x1024.jpg\" alt=\"\" data-id=\"82\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200808_180916-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200808_180916/\" class=\"wp-image-82\"/><figcaption class=\"blocks-gallery-item__caption\">Butter chicken ravioli</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0106_big-1024x683.jpg\" alt=\"\" data-id=\"83\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0106_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0106_big/\" class=\"wp-image-83\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0154_big-1024x683.jpg\" alt=\"\" data-id=\"84\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0154_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0154_big/\" class=\"wp-image-84\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big-683x1024.jpg\" alt=\"\" data-id=\"85\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0175_big/\" class=\"wp-image-85\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0279_big-683x1024.jpg\" alt=\"\" data-id=\"86\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0279_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0279_big/\" class=\"wp-image-86\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-1024x683.jpg\" alt=\"\" data-id=\"87\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9757_big/\" class=\"wp-image-87\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9793_big-1024x819.jpg\" alt=\"\" data-id=\"88\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9793_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9793_big/\" class=\"wp-image-88\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9809_big-1024x683.jpg\" alt=\"\" data-id=\"89\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9809_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9809_big/\" class=\"wp-image-89\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9861_big-1024x683.jpg\" alt=\"\" data-id=\"90\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9861_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9861_big/\" class=\"wp-image-90\"/><figcaption class=\"blocks-gallery-item__caption\">Seekh kebab naan rolls</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9864_big-1-1024x819.jpg\" alt=\"\" data-id=\"91\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9864_big-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9864_big-2/\" class=\"wp-image-91\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/SmartSelect_20200718-145513_WhatsApp-1-1024x705.jpg\" alt=\"\" data-id=\"92\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/SmartSelect_20200718-145513_WhatsApp-1.jpg\" data-link=\"http://www.purpletulip.ca/about/smartselect_20200718-145513_whatsapp-2/\" class=\"wp-image-92\"/><figcaption class=\"blocks-gallery-item__caption\">Iconic \'Bombay\" vada pao</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-1-768x1024.jpg\" alt=\"\" data-id=\"93\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-1.jpg\" data-link=\"http://www.purpletulip.ca/about/zafrani-tikka-2/\" class=\"wp-image-93\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->','Notice','','inherit','closed','closed','','8-revision-v1','','','2020-08-29 01:00:58','2020-08-29 01:00:58','',8,'http://www.purpletulip.ca/2020/08/29/8-revision-v1/',0,'revision','',0),(63,1,'2020-08-29 00:43:12','2020-08-29 00:43:12','','20200612_191836','','inherit','open','closed','','20200612_191836','','','2020-08-29 00:43:12','2020-08-29 00:43:12','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191836.jpg',0,'attachment','image/jpeg',0),(64,1,'2020-08-29 00:43:19','2020-08-29 00:43:19','','20200612_191844','','inherit','open','closed','','20200612_191844','','','2020-08-29 00:43:19','2020-08-29 00:43:19','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191844.jpg',0,'attachment','image/jpeg',0),(65,1,'2020-08-29 00:43:27','2020-08-29 00:43:27','','20200612_223346','Makhana kheer | Foxnut pudding','inherit','open','closed','','20200612_223346','','','2020-08-29 00:53:05','2020-08-29 00:53:05','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223346.jpg',0,'attachment','image/jpeg',0),(66,1,'2020-08-29 00:43:35','2020-08-29 00:43:35','','20200612_223359','Hydration station','inherit','open','closed','','20200612_223359','','','2020-08-29 00:53:20','2020-08-29 00:53:20','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223359.jpg',0,'attachment','image/jpeg',0),(67,1,'2020-08-29 00:43:42','2020-08-29 00:43:42','','20200612_223548 1','','inherit','open','closed','','20200612_223548-1','','','2020-08-29 00:43:42','2020-08-29 00:43:42','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223548-1.jpg',0,'attachment','image/jpeg',0),(68,1,'2020-08-29 00:43:51','2020-08-29 00:43:51','','20200612_223714','Mini rice bowls','inherit','open','closed','','20200612_223714','','','2020-08-29 00:53:30','2020-08-29 00:53:30','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223714.jpg',0,'attachment','image/jpeg',0),(69,1,'2020-08-29 00:43:58','2020-08-29 00:43:58','','20200613_152609','Rose yogurt pudding','inherit','open','closed','','20200613_152609','','','2020-08-29 00:54:09','2020-08-29 00:54:09','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_152609.jpg',0,'attachment','image/jpeg',0),(72,1,'2020-08-29 00:44:21','2020-08-29 00:44:21','','20200613_162555','Chole bhature cornets','inherit','open','closed','','20200613_162555','','','2020-08-29 00:55:18','2020-08-29 00:55:18','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_162555.jpg',0,'attachment','image/jpeg',0),(73,1,'2020-08-29 00:44:29','2020-08-29 00:44:29','','20200613_163854','Basket chaat | Tangy potato salad in potato baskets','inherit','open','closed','','20200613_163854','','','2020-08-29 00:55:50','2020-08-29 00:55:50','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_163854.jpg',0,'attachment','image/jpeg',0),(75,1,'2020-08-29 00:44:41','2020-08-29 00:44:41','','20200626_163204','Pineapple \'Sandesh\' | Pineapple with soft cheese topping Cac','inherit','open','closed','','20200626_163204','','','2020-08-29 00:57:12','2020-08-29 00:57:12','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_163204.jpg',0,'attachment','image/jpeg',0),(76,1,'2020-08-29 00:44:45','2020-08-29 00:44:45','','20200711_080822 1','','inherit','open','closed','','20200711_080822-1','','','2020-08-29 00:44:45','2020-08-29 00:44:45','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080822-1.jpg',0,'attachment','image/jpeg',0),(77,1,'2020-08-29 00:44:53','2020-08-29 00:44:53','','20200711_080857','','inherit','open','closed','','20200711_080857','','','2020-08-29 00:44:53','2020-08-29 00:44:53','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080857.jpg',0,'attachment','image/jpeg',0),(79,1,'2020-08-29 00:45:06','2020-08-29 00:45:06','','20200801_175853','Baked mango yogurt','inherit','open','closed','','20200801_175853','','','2020-08-29 00:58:08','2020-08-29 00:58:08','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200801_175853.jpg',0,'attachment','image/jpeg',0),(80,1,'2020-08-29 00:45:15','2020-08-29 00:45:15','','20200802_120818','Summer salad with citrus and ginger dressing','inherit','open','closed','','20200802_120818','','','2020-08-29 00:58:29','2020-08-29 00:58:29','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_120818.jpg',0,'attachment','image/jpeg',0),(81,1,'2020-08-29 00:45:23','2020-08-29 00:45:23','','20200802_183309','','inherit','open','closed','','20200802_183309','','','2020-08-29 00:45:23','2020-08-29 00:45:23','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_183309.jpg',0,'attachment','image/jpeg',0),(83,1,'2020-08-29 00:45:39','2020-08-29 00:45:39','','Khaira__photography by cashmere_0G7A0106_big','','inherit','open','closed','','khaira__photography-by-cashmere_0g7a0106_big','','','2020-08-29 00:45:39','2020-08-29 00:45:39','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0106_big.jpg',0,'attachment','image/jpeg',0),(84,1,'2020-08-29 00:45:43','2020-08-29 00:45:43','','Khaira__photography by cashmere_0G7A0154_big','','inherit','open','closed','','khaira__photography-by-cashmere_0g7a0154_big','','','2020-08-29 00:45:43','2020-08-29 00:45:43','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0154_big.jpg',0,'attachment','image/jpeg',0),(85,1,'2020-08-29 00:45:47','2020-08-29 00:45:47','','Khaira__photography by cashmere_0G7A0175_big','','inherit','open','closed','','khaira__photography-by-cashmere_0g7a0175_big','','','2020-08-29 00:45:47','2020-08-29 00:45:47','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg',0,'attachment','image/jpeg',0),(86,1,'2020-08-29 00:45:49','2020-08-29 00:45:49','','Khaira__photography by cashmere_0G7A0279_big','','inherit','open','closed','','khaira__photography-by-cashmere_0g7a0279_big','','','2020-08-29 00:45:49','2020-08-29 00:45:49','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0279_big.jpg',0,'attachment','image/jpeg',0),(87,1,'2020-08-29 00:45:54','2020-08-29 00:45:54','','Khaira__photography by cashmere_0G7A9757_big','','inherit','open','closed','','khaira__photography-by-cashmere_0g7a9757_big','','','2020-08-29 00:45:54','2020-08-29 00:45:54','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big.jpg',0,'attachment','image/jpeg',0),(88,1,'2020-08-29 00:45:59','2020-08-29 00:45:59','','Khaira__photography by cashmere_0G7A9793_big','','inherit','open','closed','','khaira__photography-by-cashmere_0g7a9793_big','','','2020-08-29 00:45:59','2020-08-29 00:45:59','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9793_big.jpg',0,'attachment','image/jpeg',0),(89,1,'2020-08-29 00:46:03','2020-08-29 00:46:03','','Khaira__photography by cashmere_0G7A9809_big','','inherit','open','closed','','khaira__photography-by-cashmere_0g7a9809_big','','','2020-08-29 00:46:03','2020-08-29 00:46:03','',8,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9809_big.jpg',0,'attachment','image/jpeg',0),(37,1,'2020-04-22 04:31:16','0000-00-00 00:00:00','','Block Preview Page','','draft','closed','closed','','','','','2020-04-22 04:31:16','0000-00-00 00:00:00','',0,'http://www.purpletulip.ca/?page_id=37',0,'page','',0),(38,1,'2020-04-22 04:34:10','2020-04-22 04:34:10','','Purple Tulip LOGO','Purple Tulip Catering','inherit','open','closed','','purple-tulip-logo','','','2020-08-29 01:34:29','2020-08-29 01:34:29','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/04/Purple-Tulip-LOGO.jpg',0,'attachment','image/jpeg',0),(40,1,'2020-04-22 04:36:49','2020-04-22 04:36:49','http://www.purpletulip.ca/wp-content/uploads/2020/04/cropped-Purple-Tulip-LOGO.jpg','cropped-Purple-Tulip-LOGO.jpg','','inherit','open','closed','','cropped-purple-tulip-logo-jpg','','','2020-04-22 04:36:49','2020-04-22 04:36:49','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/04/cropped-Purple-Tulip-LOGO.jpg',0,'attachment','image/jpeg',0),(44,1,'2020-04-22 04:48:43','2020-04-22 04:48:43','<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size has-vivid-red-color\">Please visit us again after social distancing is relaxed.</p>\n<!-- /wp:paragraph -->','Site Update','','inherit','closed','closed','','8-revision-v1','','','2020-04-22 04:48:43','2020-04-22 04:48:43','',8,'http://www.purpletulip.ca/2020/04/22/8-revision-v1/',0,'revision','',0),(43,1,'2020-04-22 04:47:23','2020-04-22 04:47:23','<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size has-vivid-red-color\">Please visit us again after social distancing is relaxed.</p>\n<!-- /wp:paragraph -->','We are temporarily closed for business due to COVID-19','','inherit','closed','closed','','8-revision-v1','','','2020-04-22 04:47:23','2020-04-22 04:47:23','',8,'http://www.purpletulip.ca/2020/04/22/8-revision-v1/',0,'revision','',0),(42,1,'2020-04-22 04:46:18','2020-04-22 04:46:18','<!-- wp:paragraph -->\n<p>Please visit us again after social distancing is relaxed.</p>\n<!-- /wp:paragraph -->','We are temporarily closed for business due to COVID-19','','inherit','closed','closed','','8-revision-v1','','','2020-04-22 04:46:18','2020-04-22 04:46:18','',8,'http://www.purpletulip.ca/2020/04/22/8-revision-v1/',0,'revision','',0),(46,1,'2020-04-22 04:51:43','2020-04-22 04:51:43','<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size has-vivid-red-color\">We are currently closed for business due to COVID-19.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size has-vivid-red-color\">Please visit us again after social distancing is relaxed.</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','8-revision-v1','','','2020-04-22 04:51:43','2020-04-22 04:51:43','',8,'http://www.purpletulip.ca/2020/04/22/8-revision-v1/',0,'revision','',0),(47,1,'2020-04-22 04:53:21','2020-04-22 04:53:21','<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"customFontSize\":25} -->\n<p style=\"font-size:25px\" class=\"has-text-color has-vivid-red-color\">We are currently closed for business due to COVID-19.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"customFontSize\":25} -->\n<p style=\"font-size:25px\" class=\"has-text-color has-vivid-red-color\">Please visit us again after social distancing is relaxed.</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','8-revision-v1','','','2020-04-22 04:53:21','2020-04-22 04:53:21','',8,'http://www.purpletulip.ca/2020/04/22/8-revision-v1/',0,'revision','',0),(51,1,'2020-04-22 04:58:01','2020-04-22 04:58:01','<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"customFontSize\":25} -->\n<p style=\"font-size:25px\" class=\"has-text-color has-vivid-red-color\">We are currently closed for business due to COVID-19.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"customFontSize\":25} -->\n<p style=\"font-size:25px\" class=\"has-text-color has-vivid-red-color\">Please visit us again after social distancing is relaxed.</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','8-revision-v1','','','2020-04-22 04:58:01','2020-04-22 04:58:01','',8,'http://www.purpletulip.ca/2020/04/22/8-revision-v1/',0,'revision','',0),(50,1,'2020-04-22 04:55:25','2020-04-22 04:55:25','<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"customFontSize\":25} -->\n<p style=\"font-size:25px\" class=\"has-text-color has-vivid-red-color\">We are currently closed for business due to COVID-19.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"customFontSize\":25} -->\n<p style=\"font-size:25px\" class=\"has-text-color has-vivid-red-color\">Please visit us again after social distancing is relaxed.</p>\n<!-- /wp:paragraph -->','Notice','','inherit','closed','closed','','8-revision-v1','','','2020-04-22 04:55:25','2020-04-22 04:55:25','',8,'http://www.purpletulip.ca/2020/04/22/8-revision-v1/',0,'revision','',0),(52,1,'2020-04-22 04:58:28','2020-04-22 04:58:28','<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"customFontSize\":25} -->\n<p style=\"font-size:25px\" class=\"has-text-color has-vivid-red-color\">We are currently closed for business due to COVID-19.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"customFontSize\":25} -->\n<p style=\"font-size:25px\" class=\"has-text-color has-vivid-red-color\">Please visit us again after social distancing is relaxed.</p>\n<!-- /wp:paragraph -->','Notice','','inherit','closed','closed','','8-revision-v1','','','2020-04-22 04:58:28','2020-04-22 04:58:28','',8,'http://www.purpletulip.ca/2020/04/22/8-revision-v1/',0,'revision','',0),(246,0,'2020-10-06 22:15:48','2020-10-06 22:15:48','Hello!\r\nJust wondering how much it is for a private dining experience? For about 15 people\n<!--more-->\nAUTHOR: Jiwan\nAUTHOR EMAIL: jiwan.dhillon@hotmail.com\nAUTHOR URL: \nSUBJECT: Request for Information\nIP: 70.69.207.33\nArray\n(\n    [1_Name] =&gt; Jiwan\n    [2_Email] =&gt; jiwan.dhillon@hotmail.com\n    [3_Message] =&gt; Hello!\r\nJust wondering how much it is for a private dining experience? For about 15 people\n    [entry_title] =&gt; Contact Us\n    [entry_permalink] =&gt; http://www.purpletulip.ca/contact-us/\n    [feedback_id] =&gt; 4bec69399f0764b1d82508686a4f6120\n)\n','Jiwan - 2020-10-06 22:15:48','','publish','closed','closed','','4bec69399f0764b1d82508686a4f6120','','','2020-10-06 22:15:48','2020-10-06 22:15:48','',183,'http://www.purpletulip.ca/?post_type=feedback&p=246',0,'feedback','',0),(169,1,'2020-10-21 21:50:54','2020-10-21 21:50:54','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\n<p class=\"\">Below are some of our popular menus. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. We work closely with you and your event planner to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\n\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Lunch.pdf\">Lunch</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/10/Indian-Inspired-Food-Stations.pdf\">Indian Inspired Food Stations</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/10/Traditional-Indian-Buffet.pdf\">Traditional Indian Buffet</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Sweet-Endings.pdf\">Sweet Endings</a></p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n</div>\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\"></div>\n</div>','Menus','','inherit','closed','closed','','144-autosave-v1','','','2020-10-21 21:50:54','2020-10-21 21:50:54','',144,'http://www.purpletulip.ca/2020/08/29/144-autosave-v1/',0,'revision','',0),(99,1,'2020-08-29 01:43:47','2020-08-29 01:43:47','<!-- wp:paragraph -->\n<p>Purple Tulip is a chef driven catering company that brings you unique and bold flavors form an award winning chef and a dynamic culinary team. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Catering to a global palate using their inspiration from travel across the globe, our culinary team brings to you trendy upscale cuisine with rich influences from various robust cuisines. We re-imagine comfort food and as well as Indian cuisine in a creative and fun way. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you are looking to host an intimate dinner with family or celebrating an event with your friends. Purple Tulip can cater to all your needs with delectable offerings that will leave your guests dazzled. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to Indian Cuisine, we have a very unique take on food from across the Indian subcontinent with balanced and refined flavors, amazing presentation and interpretation that will leave your guests wowed. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our updated website coming soon. In the interim, please visit our <a href=\"https://www.instagram.com/purpletulipcatering/?hl=en\">Instagram</a> page. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[38,12,13,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93],\"columns\":3,\"align\":\"center\"} -->\n<figure class=\"wp-block-gallery aligncenter columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/Purple-Tulip-LOGO-1024x1024.jpg\" alt=\"\" data-id=\"38\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/Purple-Tulip-LOGO.jpg\" data-link=\"http://www.purpletulip.ca/purple-tulip-logo/\" class=\"wp-image-38\"/><figcaption class=\"blocks-gallery-item__caption\">Purple Tulip Catering</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/070111CUFSA0646-1024x681.jpg\" alt=\"\" data-id=\"12\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/070111CUFSA0646-scaled.jpg\" data-link=\"http://www.purpletulip.ca/070111cufsa0646/\" class=\"wp-image-12\"/><figcaption class=\"blocks-gallery-item__caption\">Pickerel cheek ceviche, Aztec gold cocktail, compressed avocado, pancetta</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/IMG_0482-Copy-1024x666.jpg\" alt=\"\" data-id=\"13\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/IMG_0482-Copy.jpg\" data-link=\"http://www.purpletulip.ca/img_0482-copy/\" class=\"wp-image-13\"/><figcaption class=\"blocks-gallery-item__caption\">Drunken tomato caprese</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-768x1024.jpg\" alt=\"\" data-id=\"61\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka.jpg\" data-link=\"http://www.purpletulip.ca/about/zafrani-tikka/\" class=\"wp-image-61\"/><figcaption class=\"blocks-gallery-item__caption\">Zaffrani tikka, mango mint chutney | Saffron chicken tikka, mango mint chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200329_144158-1024x768.jpg\" alt=\"\" data-id=\"62\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200329_144158-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200329_144158/\" class=\"wp-image-62\"/><figcaption class=\"blocks-gallery-item__caption\">Chicken ghee roast</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191836-1024x768.jpg\" alt=\"\" data-id=\"63\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191836-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_191836/\" class=\"wp-image-63\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191844-1024x768.jpg\" alt=\"\" data-id=\"64\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191844-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_191844/\" class=\"wp-image-64\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223346-768x1024.jpg\" alt=\"\" data-id=\"65\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223346-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223346/\" class=\"wp-image-65\"/><figcaption class=\"blocks-gallery-item__caption\">Makhana kheer | Foxnut pudding</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223359-1024x768.jpg\" alt=\"\" data-id=\"66\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223359-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223359/\" class=\"wp-image-66\"/><figcaption class=\"blocks-gallery-item__caption\">Hydration station</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223548-1-768x1024.jpg\" alt=\"\" data-id=\"67\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223548-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223548-1/\" class=\"wp-image-67\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223714-768x1024.jpg\" alt=\"\" data-id=\"68\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223714-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223714/\" class=\"wp-image-68\"/><figcaption class=\"blocks-gallery-item__caption\">Mini rice bowls</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_152609-768x1024.jpg\" alt=\"\" data-id=\"69\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_152609-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_152609/\" class=\"wp-image-69\"/><figcaption class=\"blocks-gallery-item__caption\">Rose yogurt pudding</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_154800-768x1024.jpg\" alt=\"\" data-id=\"70\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_154800-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_154800/\" class=\"wp-image-70\"/><figcaption class=\"blocks-gallery-item__caption\">Alu tikki sphere chaat | Potato sphere, tamarind sauce, cilantro chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_161310-768x1024.jpg\" alt=\"\" data-id=\"71\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_161310-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_161310/\" class=\"wp-image-71\"/><figcaption class=\"blocks-gallery-item__caption\">Tandoori spice grilled salmon</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_162555-768x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_162555-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_162555/\" class=\"wp-image-72\"/><figcaption class=\"blocks-gallery-item__caption\">Chole bhature cornets</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_163854-1024x768.jpg\" alt=\"\" data-id=\"73\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_163854-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_163854/\" class=\"wp-image-73\"/><figcaption class=\"blocks-gallery-item__caption\">Basket chaat | Tangy potato salad in potato baskets</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_153754-1024x768.jpg\" alt=\"\" data-id=\"74\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_153754-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200626_153754/\" class=\"wp-image-74\"/><figcaption class=\"blocks-gallery-item__caption\">Prawn \'Balchao\', avocado chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_163204-1024x855.jpg\" alt=\"\" data-id=\"75\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_163204.jpg\" data-link=\"http://www.purpletulip.ca/about/20200626_163204/\" class=\"wp-image-75\"/><figcaption class=\"blocks-gallery-item__caption\">Pineapple \'Sandesh\' | Pineapple with soft cheese topping Cac</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080822-1-1024x768.jpg\" alt=\"\" data-id=\"76\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080822-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200711_080822-1/\" class=\"wp-image-76\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080857-1024x768.jpg\" alt=\"\" data-id=\"77\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080857-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200711_080857/\" class=\"wp-image-77\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200721_184404-768x1024.jpg\" alt=\"\" data-id=\"78\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200721_184404-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200721_184404/\" class=\"wp-image-78\"/><figcaption class=\"blocks-gallery-item__caption\">Motichoor, pineapple halwa, masala milk foam</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200801_175853-768x1024.jpg\" alt=\"\" data-id=\"79\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200801_175853-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200801_175853/\" class=\"wp-image-79\"/><figcaption class=\"blocks-gallery-item__caption\">Baked mango yogurt</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_120818-1024x768.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_120818-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200802_120818/\" class=\"wp-image-80\"/><figcaption class=\"blocks-gallery-item__caption\">Summer salad with citrus and ginger dressing</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_183309-768x1024.jpg\" alt=\"\" data-id=\"81\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_183309-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200802_183309/\" class=\"wp-image-81\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200808_180916-768x1024.jpg\" alt=\"\" data-id=\"82\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200808_180916-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200808_180916/\" class=\"wp-image-82\"/><figcaption class=\"blocks-gallery-item__caption\">Butter chicken ravioli</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0106_big-1024x683.jpg\" alt=\"\" data-id=\"83\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0106_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0106_big/\" class=\"wp-image-83\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0154_big-1024x683.jpg\" alt=\"\" data-id=\"84\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0154_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0154_big/\" class=\"wp-image-84\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big-683x1024.jpg\" alt=\"\" data-id=\"85\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0175_big/\" class=\"wp-image-85\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0279_big-683x1024.jpg\" alt=\"\" data-id=\"86\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0279_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0279_big/\" class=\"wp-image-86\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-1024x683.jpg\" alt=\"\" data-id=\"87\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9757_big/\" class=\"wp-image-87\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9793_big-1024x819.jpg\" alt=\"\" data-id=\"88\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9793_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9793_big/\" class=\"wp-image-88\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9809_big-1024x683.jpg\" alt=\"\" data-id=\"89\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9809_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9809_big/\" class=\"wp-image-89\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9861_big-1024x683.jpg\" alt=\"\" data-id=\"90\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9861_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9861_big/\" class=\"wp-image-90\"/><figcaption class=\"blocks-gallery-item__caption\">Seekh kebab naan rolls</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9864_big-1-1024x819.jpg\" alt=\"\" data-id=\"91\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9864_big-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9864_big-2/\" class=\"wp-image-91\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/SmartSelect_20200718-145513_WhatsApp-1-1024x705.jpg\" alt=\"\" data-id=\"92\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/SmartSelect_20200718-145513_WhatsApp-1.jpg\" data-link=\"http://www.purpletulip.ca/about/smartselect_20200718-145513_whatsapp-2/\" class=\"wp-image-92\"/><figcaption class=\"blocks-gallery-item__caption\">Iconic \'Bombay\" vada pao</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-1-768x1024.jpg\" alt=\"\" data-id=\"93\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-1.jpg\" data-link=\"http://www.purpletulip.ca/about/zafrani-tikka-2/\" class=\"wp-image-93\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Purple Tulip Catering','','inherit','closed','closed','','8-revision-v1','','','2020-08-29 01:43:47','2020-08-29 01:43:47','',8,'http://www.purpletulip.ca/2020/08/29/8-revision-v1/',0,'revision','',0),(95,1,'2020-08-29 01:28:35','2020-08-29 01:28:35','<!-- wp:paragraph -->\n<p>Purple Tulip is a chef driven catering company that brings you unique and bold flavors form an award winning chef and a dynamic culinary team. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Catering to a global palate using their inspiration from travel across the globe, our culinary team brings to you trendy upscale cuisine with rich influences from various robust cuisines. We re-imagine comfort food and as well as Indian cuisine in a creative and fun way. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you are looking to host an intimate dinner with family or celebrating an event with your friends. Purple Tulip can cater to all your needs with delectable offerings that will leave your guests dazzled. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to Indian Cuisine, we have a very unique take on food from across the Indian subcontinent with balanced and refined flavors, amazing presentation and interpretation that will leave your guests wowed. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our updated website coming soon. In the interim, please visit our <a href=\"https://www.instagram.com/purpletulipcatering/?hl=en\">Instagram</a> page. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[\"38\",\"12\",\"13\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"67\",\"68\",\"69\",\"70\",\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\",\"79\",\"80\",\"81\",\"82\",\"83\",\"84\",\"85\",\"86\",\"87\",\"88\",\"89\",\"90\",\"91\",\"92\",\"93\"],\"columns\":3,\"align\":\"center\"} -->\n<figure class=\"wp-block-gallery aligncenter columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/Purple-Tulip-LOGO-1024x1024.jpg\" alt=\"\" data-id=\"38\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/Purple-Tulip-LOGO.jpg\" data-link=\"http://www.purpletulip.ca/purple-tulip-logo/\" class=\"wp-image-38\"/><figcaption class=\"blocks-gallery-item__caption\">Purple Tulip Catering</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/070111CUFSA0646-1024x681.jpg\" alt=\"\" data-id=\"12\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/070111CUFSA0646-scaled.jpg\" data-link=\"http://www.purpletulip.ca/070111cufsa0646/\" class=\"wp-image-12\"/><figcaption class=\"blocks-gallery-item__caption\">Pickerel cheek ceviche, Aztec gold cocktail, compressed avocado, pancetta</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/IMG_0482-Copy-1024x666.jpg\" alt=\"\" data-id=\"13\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/04/IMG_0482-Copy.jpg\" data-link=\"http://www.purpletulip.ca/img_0482-copy/\" class=\"wp-image-13\"/><figcaption class=\"blocks-gallery-item__caption\">Drunken tomato caprese</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-768x1024.jpg\" alt=\"\" data-id=\"61\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka.jpg\" data-link=\"http://www.purpletulip.ca/about/zafrani-tikka/\" class=\"wp-image-61\"/><figcaption class=\"blocks-gallery-item__caption\">Zaffrani tikka, mango mint chutney | Saffron chicken tikka, mango mint chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200329_144158-1024x768.jpg\" alt=\"\" data-id=\"62\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200329_144158-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200329_144158/\" class=\"wp-image-62\"/><figcaption class=\"blocks-gallery-item__caption\">Chicken ghee roast</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191836-1024x768.jpg\" alt=\"\" data-id=\"63\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191836-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_191836/\" class=\"wp-image-63\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191844-1024x768.jpg\" alt=\"\" data-id=\"64\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_191844-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_191844/\" class=\"wp-image-64\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223346-768x1024.jpg\" alt=\"\" data-id=\"65\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223346-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223346/\" class=\"wp-image-65\"/><figcaption class=\"blocks-gallery-item__caption\">Makhana kheer | Foxnut pudding</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223359-1024x768.jpg\" alt=\"\" data-id=\"66\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223359-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223359/\" class=\"wp-image-66\"/><figcaption class=\"blocks-gallery-item__caption\">Hydration station</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223548-1-768x1024.jpg\" alt=\"\" data-id=\"67\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223548-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223548-1/\" class=\"wp-image-67\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223714-768x1024.jpg\" alt=\"\" data-id=\"68\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200612_223714-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200612_223714/\" class=\"wp-image-68\"/><figcaption class=\"blocks-gallery-item__caption\">Mini rice bowls</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_152609-768x1024.jpg\" alt=\"\" data-id=\"69\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_152609-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_152609/\" class=\"wp-image-69\"/><figcaption class=\"blocks-gallery-item__caption\">Rose yogurt pudding</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_154800-768x1024.jpg\" alt=\"\" data-id=\"70\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_154800-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_154800/\" class=\"wp-image-70\"/><figcaption class=\"blocks-gallery-item__caption\">Alu tikki sphere chaat | Potato sphere, tamarind sauce, cilantro chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_161310-768x1024.jpg\" alt=\"\" data-id=\"71\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_161310-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_161310/\" class=\"wp-image-71\"/><figcaption class=\"blocks-gallery-item__caption\">Tandoori spice grilled salmon</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_162555-768x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_162555-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_162555/\" class=\"wp-image-72\"/><figcaption class=\"blocks-gallery-item__caption\">Chole bhature cornets</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_163854-1024x768.jpg\" alt=\"\" data-id=\"73\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200613_163854-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200613_163854/\" class=\"wp-image-73\"/><figcaption class=\"blocks-gallery-item__caption\">Basket chaat | Tangy potato salad in potato baskets</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_153754-1024x768.jpg\" alt=\"\" data-id=\"74\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_153754-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200626_153754/\" class=\"wp-image-74\"/><figcaption class=\"blocks-gallery-item__caption\">Prawn \'Balchao\', avocado chutney</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_163204-1024x855.jpg\" alt=\"\" data-id=\"75\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200626_163204.jpg\" data-link=\"http://www.purpletulip.ca/about/20200626_163204/\" class=\"wp-image-75\"/><figcaption class=\"blocks-gallery-item__caption\">Pineapple \'Sandesh\' | Pineapple with soft cheese topping Cac</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080822-1-1024x768.jpg\" alt=\"\" data-id=\"76\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080822-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200711_080822-1/\" class=\"wp-image-76\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080857-1024x768.jpg\" alt=\"\" data-id=\"77\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200711_080857-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200711_080857/\" class=\"wp-image-77\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200721_184404-768x1024.jpg\" alt=\"\" data-id=\"78\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200721_184404-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200721_184404/\" class=\"wp-image-78\"/><figcaption class=\"blocks-gallery-item__caption\">Motichoor, pineapple halwa, masala milk foam</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200801_175853-768x1024.jpg\" alt=\"\" data-id=\"79\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200801_175853-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200801_175853/\" class=\"wp-image-79\"/><figcaption class=\"blocks-gallery-item__caption\">Baked mango yogurt</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_120818-1024x768.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_120818-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200802_120818/\" class=\"wp-image-80\"/><figcaption class=\"blocks-gallery-item__caption\">Summer salad with citrus and ginger dressing</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_183309-768x1024.jpg\" alt=\"\" data-id=\"81\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200802_183309-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200802_183309/\" class=\"wp-image-81\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200808_180916-768x1024.jpg\" alt=\"\" data-id=\"82\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20200808_180916-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/20200808_180916/\" class=\"wp-image-82\"/><figcaption class=\"blocks-gallery-item__caption\">Butter chicken ravioli</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0106_big-1024x683.jpg\" alt=\"\" data-id=\"83\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0106_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0106_big/\" class=\"wp-image-83\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0154_big-1024x683.jpg\" alt=\"\" data-id=\"84\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0154_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0154_big/\" class=\"wp-image-84\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big-683x1024.jpg\" alt=\"\" data-id=\"85\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0175_big/\" class=\"wp-image-85\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0279_big-683x1024.jpg\" alt=\"\" data-id=\"86\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0279_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a0279_big/\" class=\"wp-image-86\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-1024x683.jpg\" alt=\"\" data-id=\"87\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9757_big/\" class=\"wp-image-87\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9793_big-1024x819.jpg\" alt=\"\" data-id=\"88\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9793_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9793_big/\" class=\"wp-image-88\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9809_big-1024x683.jpg\" alt=\"\" data-id=\"89\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9809_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9809_big/\" class=\"wp-image-89\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9861_big-1024x683.jpg\" alt=\"\" data-id=\"90\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9861_big-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9861_big/\" class=\"wp-image-90\"/><figcaption class=\"blocks-gallery-item__caption\">Seekh kebab naan rolls</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9864_big-1-1024x819.jpg\" alt=\"\" data-id=\"91\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9864_big-1-scaled.jpg\" data-link=\"http://www.purpletulip.ca/about/khaira__photography-by-cashmere_0g7a9864_big-2/\" class=\"wp-image-91\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/SmartSelect_20200718-145513_WhatsApp-1-1024x705.jpg\" alt=\"\" data-id=\"92\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/SmartSelect_20200718-145513_WhatsApp-1.jpg\" data-link=\"http://www.purpletulip.ca/about/smartselect_20200718-145513_whatsapp-2/\" class=\"wp-image-92\"/><figcaption class=\"blocks-gallery-item__caption\">Iconic \'Bombay\" vada pao</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-1-768x1024.jpg\" alt=\"\" data-id=\"93\" data-full-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Zafrani-tikka-1.jpg\" data-link=\"http://www.purpletulip.ca/about/zafrani-tikka-2/\" class=\"wp-image-93\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Purple Tulip Catering','','inherit','closed','closed','','8-revision-v1','','','2020-08-29 01:28:35','2020-08-29 01:28:35','',8,'http://www.purpletulip.ca/2020/08/29/8-revision-v1/',0,'revision','',0),(96,1,'2020-08-29 01:31:26','2020-08-29 01:31:26','http://www.purpletulip.ca/wp-content/uploads/2020/04/cropped-Purple-Tulip-LOGO-1.jpg','cropped-Purple-Tulip-LOGO-1.jpg','','inherit','open','closed','','cropped-purple-tulip-logo-1-jpg','','','2020-08-29 01:31:26','2020-08-29 01:31:26','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/04/cropped-Purple-Tulip-LOGO-1.jpg',0,'attachment','image/jpeg',0),(97,1,'2020-08-29 01:31:48','2020-08-29 01:31:48','http://www.purpletulip.ca/wp-content/uploads/2020/04/cropped-Purple-Tulip-LOGO-2.jpg','cropped-Purple-Tulip-LOGO-2.jpg','','inherit','open','closed','','cropped-purple-tulip-logo-2-jpg','','','2020-08-29 01:31:48','2020-08-29 01:31:48','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/04/cropped-Purple-Tulip-LOGO-2.jpg',0,'attachment','image/jpeg',0),(310,1,'2021-08-23 07:34:16','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2021-08-23 07:34:16','0000-00-00 00:00:00','',0,'http://www.purpletulip.ca/?p=310',0,'post','',0),(131,1,'2020-08-29 02:09:44','2020-08-29 02:09:44','http://www.purpletulip.ca/wp-content/uploads/2020/04/cropped-Purple-Tulip-LOGO-e1598664861391.jpg','cropped-Purple-Tulip-LOGO-e1598664861391.jpg','','inherit','open','closed','','cropped-purple-tulip-logo-e1598664861391-jpg','','','2020-08-29 02:09:44','2020-08-29 02:09:44','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/04/cropped-Purple-Tulip-LOGO-e1598664861391.jpg',0,'attachment','image/jpeg',0),(134,1,'2020-08-29 02:11:20','2020-08-29 02:11:20','','Purple Tulip LOGO','','inherit','open','closed','','purple-tulip-logo-2','','','2020-08-29 02:11:20','2020-08-29 02:11:20','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/08/Purple-Tulip-LOGO.png',0,'attachment','image/png',0),(135,1,'2020-08-29 02:11:36','2020-08-29 02:11:36','http://www.purpletulip.ca/wp-content/uploads/2020/08/cropped-Purple-Tulip-LOGO.png','cropped-Purple-Tulip-LOGO.png','','inherit','open','closed','','cropped-purple-tulip-logo-png','','','2020-08-29 02:11:36','2020-08-29 02:11:36','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/08/cropped-Purple-Tulip-LOGO.png',0,'attachment','image/png',0),(168,1,'2020-08-29 19:25:22','2020-08-29 19:25:22','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Lunch.pdf\">Lunch</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\n<a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Food-Stations.pdf\">Indian Inspired Food Stations</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Sweet-Endings.pdf\">Sweet Endings</a></p>\n<p class=\"\"></p>\n<p class=\"\"></p>\n\n</div>\n</div>\n</div>\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-08-29 19:25:22','2020-08-29 19:25:22','',144,'http://www.purpletulip.ca/2020/08/29/144-revision-v1/',0,'revision','',0),(170,1,'2020-08-29 19:30:19','2020-08-29 19:30:19','<!-- wp:html -->\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Lunch.pdf\">Lunch</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\n<p>&nbsp;</p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Food-Stations.pdf\">Indian Inspired Food Stations</a></p>\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Sweet-Endings.pdf\">Sweet Endings</a></p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\">&nbsp;</p>\n</div>\n</div>\n</div>\n</div>\n<!-- /wp:html -->','Untitled Reusable Block','','publish','closed','closed','','untitled-reusable-block','','','2020-08-29 19:30:19','2020-08-29 19:30:19','',0,'http://www.purpletulip.ca/2020/08/29/untitled-reusable-block/',0,'wp_block','',0),(171,1,'2020-08-29 19:34:48','2020-08-29 19:34:48','<iframe title=\"City at Night\" width=\"780\" height=\"439\" src=\"https://www.youtube.com/embed/5LxGNTTxPis?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','1f72b9b20df6dad278506c9cdf9fe828','','','2020-08-29 19:34:48','2020-08-29 19:34:48','',0,'http://www.purpletulip.ca/2020/08/29/1f72b9b20df6dad278506c9cdf9fe828/',0,'oembed_cache','',0),(172,1,'2020-08-29 19:37:14','2020-08-29 19:37:14','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb','','','2020-08-29 19:37:14','2020-08-29 19:37:14','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops04d2e02e339091fa0657a780da6102bb.jpg',0,'attachment','image/jpeg',0),(173,1,'2020-08-29 19:38:26','2020-08-29 19:38:26','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops787728f1042186f9489ad9848667214a','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcrops787728f1042186f9489ad9848667214a','','','2020-08-29 19:38:26','2020-08-29 19:38:26','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops787728f1042186f9489ad9848667214a.jpg',0,'attachment','image/jpeg',0),(174,1,'2020-08-29 19:38:28','2020-08-29 19:38:28','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops35fa0163b11b0ed1d2bb78c933f4eb9a','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcrops35fa0163b11b0ed1d2bb78c933f4eb9a','','','2020-08-29 19:38:28','2020-08-29 19:38:28','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops35fa0163b11b0ed1d2bb78c933f4eb9a.jpg',0,'attachment','image/jpeg',0),(175,1,'2020-08-29 19:50:56','2020-08-29 19:50:56','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Lunch.pdf\">Lunch</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Food-Stations.pdf\">Indian Inspired Food Stations</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Sweet-Endings.pdf\">Sweet Endings</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img  wp-image-126  alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-08-29 19:50:56','2020-08-29 19:50:56','',144,'http://www.purpletulip.ca/2020/08/29/144-revision-v1/',0,'revision','',0),(179,1,'2020-08-29 19:55:41','2020-08-29 19:55:41','','About Us','','inherit','closed','closed','','177-revision-v1','','','2020-08-29 19:55:41','2020-08-29 19:55:41','',177,'http://www.purpletulip.ca/2020/08/29/177-revision-v1/',0,'revision','',0),(180,1,'2020-08-29 19:55:41','2020-08-29 19:55:41',' ','','','publish','closed','closed','','180','','','2020-08-29 21:14:28','2020-08-29 21:14:28','',0,'http://www.purpletulip.ca/2020/08/29/180/',2,'nav_menu_item','',0),(181,1,'2020-08-29 20:00:15','2020-08-29 20:00:15','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\">About us</p>\r\n<p class=\"\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">Purple Tulip caters fine global cuisine as well as modern &amp; traditional Indian cuisine for your event. Providing unsurpassed quality, our food is curated by an award winning chef who has catered to celebrities like HH Dalai Lama, Rev. Bishop Tutu, Emperor &amp; Empress of Japan to name a few. With over 25 years of culinary experience in countries across the globe and with multiple gold and silver medal wins in culinary challenges, our chef brings you his finely honed culinary skills curating an experience which you wow your guests at your next event.</span></p>\r\n<p class=\"\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">We specialize in custom menus to ft your event, be it a sit down dinner, cocktail reception, action stations or family style meals, the food is always fresh and flavorful and artistically displayed in a fun and trendy manner.</span></p>\r\n<p class=\"\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">If you wish to amaze your guests at your next event, look no further than Purple Tulip Catering to delight your guests and make your event memorable.</span></p>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','177-revision-v1','','','2020-08-29 20:00:15','2020-08-29 20:00:15','',177,'http://www.purpletulip.ca/2020/08/29/177-revision-v1/',0,'revision','',0),(183,1,'2020-08-29 21:11:38','2020-08-29 21:11:38','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\r\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\r\n<h1 class=\"color3-color hidden-xs hidden-sm hidden-md\" style=\"font-size: 4em; margin: 35px 0px; padding: 0em;\">We create Amazing Dining Experiences</h1>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"><span style=\"font-size: 1rem;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</span></div>\r\n</div>\r\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\r\n<p class=\"\">Contact us using the form below.</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">[weforms id=\"276\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\"></div>\r\n</div>\r\n</div>','Planning an event? Contact us for your catering needs and to wow your guests!','','publish','closed','closed','','contact-us','','','2020-10-21 20:24:23','2020-10-21 20:24:23','',0,'http://www.purpletulip.ca/?page_id=183',0,'page','',0),(297,1,'2020-10-21 20:16:18','2020-10-21 20:16:18','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\r\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\r\n<h1 class=\"color3-color hidden-xs hidden-sm hidden-md\" style=\"font-size: 4em; margin: 35px 0px; padding: 0em;\">We create Amazing Dining Experiences</h1>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"><span style=\"font-size: 1rem;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</span></div>\r\n</div>\r\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\r\n<p class=\"\">Contact us using the form below.</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">[weforms id=\"276\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\"></div>\r\n</div>\r\n</div>','Contact us','','inherit','closed','closed','','183-revision-v1','','','2020-10-21 20:16:18','2020-10-21 20:16:18','',183,'http://www.purpletulip.ca/2020/10/21/183-revision-v1/',0,'revision','',0),(185,1,'2020-08-29 21:11:38','2020-08-29 21:11:38','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\r\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\r\n<h1 class=\"color3-color\" style=\"font-size: 4em; margin: 35px 0;\">We create Amazing Dining Experiences</h1>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr class=\"bg-hr\" style=\"border: 2px solid; margin-left: 0px;\" width=\"100%\">\r\n\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin: 30px auto;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</p>\r\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\r\n<p class=\"\">Contact us using the form below.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Request for Information\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Message\" type=\"textarea\"][/contact-form]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','183-revision-v1','','','2020-08-29 21:11:38','2020-08-29 21:11:38','',183,'http://www.purpletulip.ca/2020/08/29/183-revision-v1/',0,'revision','',0),(187,1,'2020-08-29 21:13:40','2020-08-29 21:13:40','','Contact us','','publish','closed','closed','','187','','','2020-10-21 20:22:16','2020-10-21 20:22:16','',0,'http://www.purpletulip.ca/2020/08/29/187/',4,'nav_menu_item','',0),(189,1,'2020-08-30 02:25:29','2020-08-30 02:25:29','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0)\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 252px; padding-bottom: 75px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.71), rgba(255, 255, 255, 0.71)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255,255,255,0.71)\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-weight: 600; background-color: #d6d641; text-align: center; font-size: 28px;\" data-font-weight=\"600\"><strong>Some Testimonials from our clients &amp; their guests</strong></p>\r\n<p class=\"\" style=\"text-align: center;\" data-font-weight=\"600\"><strong>Write us your testimonial below.</strong></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"I had Purple Tulip Catering for my wedding events earlier this summer. They did an amazing job with everything. Food was consistently delicious, and the presentation was beautiful. I was so glad that I was able to book a tasting beforehand and customize my menu. The variety and creativity purple tulip catering offers is truly one of a kind. Your guests will love every bite!.\" - Jay Dee</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"Food was delicious 😋 service was very good. Couldn’t have asked for anything more. 10 out of 10. Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 4px;\"><em><strong>\"All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\" - Guest</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"The best caterers in surrey</strong></em>\r\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering.\" - Arvind Suri</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" - Rinku Gandhi-Agarwal</strong></em></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600; text-align: center;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px; padding-top: 0px;\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 91%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','publish','closed','closed','','testimonials','','','2020-09-02 20:03:26','2020-09-02 20:03:26','',0,'http://www.purpletulip.ca/?page_id=189',0,'page','',0),(191,1,'2020-08-30 02:25:29','2020-08-30 02:25:29','','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-30 02:25:29','2020-08-30 02:25:29','',189,'http://www.purpletulip.ca/2020/08/30/189-revision-v1/',0,'revision','',0),(192,1,'2020-08-30 02:25:29','2020-08-30 02:25:29',' ','','','publish','closed','closed','','192','','','2020-08-30 02:25:29','2020-08-30 02:25:29','',0,'http://www.purpletulip.ca/2020/08/30/192/',5,'nav_menu_item','',0),(194,1,'2020-08-30 02:43:38','2020-08-30 02:43:38','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.  \"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-30 02:43:38','2020-08-30 02:43:38','',189,'http://www.purpletulip.ca/2020/08/30/189-revision-v1/',0,'revision','',0),(196,1,'2020-08-30 02:49:39','2020-08-30 02:49:39','<div class=\"boldgrid-section\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.  \"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-30 02:49:39','2020-08-30 02:49:39','',189,'http://www.purpletulip.ca/2020/08/30/189-revision-v1/',0,'revision','',0),(197,1,'2020-08-30 02:55:57','2020-08-30 02:55:57','<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n<p class=\"\" style=\"color: #d6ff0a; font-size: 23px;\" data-font-weight=\"600\">Read testimonials from other guests.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-30 02:55:57','2020-08-30 02:55:57','',189,'http://www.purpletulip.ca/2020/08/30/189-revision-v1/',0,'revision','',0),(198,1,'2020-08-30 23:06:27','2020-08-30 23:06:27','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.81), rgba(255, 255, 255, 0.81)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0.81)\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 75px; padding-bottom: 75px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<p class=\"bg-text-fx bg-text-fx-glow\" style=\"font-size: 20px;\"><strong>Some testimonials from our hosts &amp; their guests. </strong></p>\n<p class=\"bg-text-fx bg-text-fx-glow\" style=\"font-size: 12px;\"><em><strong>Click to leave your testimonial.</strong></em></p>\n<p class=\"\"><em><strong>\"Food was delicious 😋 service was very good, Couldn’t have asked for anything more. 10 out of 10.&nbsp; Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\"><em><strong>\'All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\' - Guest</strong></em></p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" Rinku Gandhi-Agarwal</strong></em></p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\"><span dir=\"ltr\"><span class=\"_3l3x\"><em><strong>\"The best caterers in surrey</strong></em>\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering \"</strong><strong>-</strong></em></span></span><em><strong>Arvind Suri<span style=\"font-size: 1rem;\">&nbsp;</span></strong></em></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div class=\"\">\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\n<p class=\"\" style=\"color: #d6ff0a; font-size: 23px;\" data-font-weight=\"600\">&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-bottom: 5px;\">\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\n\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\n\n</div>\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\">\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>','Testimonials','','inherit','closed','closed','','189-autosave-v1','','','2020-08-30 23:06:27','2020-08-30 23:06:27','',189,'http://www.purpletulip.ca/2020/08/30/189-autosave-v1/',0,'revision','',0),(199,1,'2020-08-30 23:39:19','2020-08-30 23:39:19','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0)\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 75px; padding-bottom: 75px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.71), rgba(255, 255, 255, 0.71)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255,255,255,0.71)\">\r\n<p class=\"\" style=\"font-weight: 600; background-color: #d6d641; text-align: center; font-size: 28px;\" data-font-weight=\"600\"><strong>Some Testimonials from our hosts &amp; their guests</strong></p>\r\n<p class=\"\"><em><strong>\"Food was delicious 😋 service was very good. Couldn’t have asked for anything more. 10 out of 10. Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\r\n<p class=\"\"><em><strong>\"All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\" - Guest</strong></em></p>\r\n<p class=\"\"><em><strong>\"The best caterers in surrey</strong></em>\r\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering.\" - Arvind Suri</strong></em></p>\r\n<p class=\"\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" - Rinku Gandhi-Agarwal</strong></em></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n<p class=\"\" style=\"color: #d6ff0a; font-size: 23px;\" data-font-weight=\"600\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-30 23:39:19','2020-08-30 23:39:19','',189,'http://www.purpletulip.ca/2020/08/30/189-revision-v1/',0,'revision','',0),(201,1,'2020-08-31 00:06:13','2020-08-31 00:06:13','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0)\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 75px; padding-bottom: 75px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.71), rgba(255, 255, 255, 0.71)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255,255,255,0.71)\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-weight: 600; background-color: #d6d641; text-align: center; font-size: 28px;\" data-font-weight=\"600\"><strong>Some Testimonials from our clients &amp; their guests</strong></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"Food was delicious 😋 service was very good. Couldn’t have asked for anything more. 10 out of 10. Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 4px;\"><em><strong>\"All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\" - Guest</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"The best caterers in surrey</strong></em>\r\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering.\" - Arvind Suri</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" - Rinku Gandhi-Agarwal</strong></em></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600; text-align: center;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px; padding-top: 0px;\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 91%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-31 00:06:13','2020-08-31 00:06:13','',189,'http://www.purpletulip.ca/2020/08/31/189-revision-v1/',0,'revision','',0),(200,1,'2020-08-31 00:01:39','2020-08-31 00:01:39','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0)\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 75px; padding-bottom: 75px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.71), rgba(255, 255, 255, 0.71)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255,255,255,0.71)\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-weight: 600; background-color: #d6d641; text-align: center; font-size: 28px;\" data-font-weight=\"600\"><strong>Some Testimonials from our clients &amp; their guests</strong></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"Food was delicious 😋 service was very good. Couldn’t have asked for anything more. 10 out of 10. Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\" style=\"border-style: double; border-width: 4px;\"><em><strong>\"All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\" - Guest</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"The best caterers in surrey</strong></em>\r\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering.\" - Arvind Suri</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" - Rinku Gandhi-Agarwal</strong></em></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n<p class=\"\" style=\"color: #d6ff0a; font-size: 23px;\" data-font-weight=\"600\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-31 00:01:39','2020-08-31 00:01:39','',189,'http://www.purpletulip.ca/2020/08/31/189-revision-v1/',0,'revision','',0),(202,1,'2020-08-31 00:21:39','2020-08-31 00:21:39','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0)\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 75px; padding-bottom: 75px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.71), rgba(255, 255, 255, 0.71)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255,255,255,0.71)\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-weight: 600; background-color: #d6d641; text-align: center; font-size: 28px;\" data-font-weight=\"600\"><strong>Some Testimonials from our clients &amp; their guests</strong></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"Food was delicious 😋 service was very good. Couldn’t have asked for anything more. 10 out of 10. Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 4px;\"><em><strong>\"All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\" - Guest</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"The best caterers in surrey</strong></em>\r\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering.\" - Arvind Suri</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" - Rinku Gandhi-Agarwal</strong></em></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600; text-align: center;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px; padding-top: 0px;\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 91%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','','','inherit','closed','closed','','189-revision-v1','','','2020-08-31 00:21:39','2020-08-31 00:21:39','',189,'http://www.purpletulip.ca/2020/08/31/189-revision-v1/',0,'revision','',0),(203,1,'2020-08-31 00:23:17','2020-08-31 00:23:17','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0)\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 75px; padding-bottom: 75px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.71), rgba(255, 255, 255, 0.71)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255,255,255,0.71)\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-weight: 600; background-color: #d6d641; text-align: center; font-size: 28px;\" data-font-weight=\"600\"><strong>Some Testimonials from our clients &amp; their guests</strong></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"Food was delicious 😋 service was very good. Couldn’t have asked for anything more. 10 out of 10. Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 4px;\"><em><strong>\"All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\" - Guest</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"The best caterers in surrey</strong></em>\r\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering.\" - Arvind Suri</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" - Rinku Gandhi-Agarwal</strong></em></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600; text-align: center;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px; padding-top: 0px;\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 91%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-31 00:23:17','2020-08-31 00:23:17','',189,'http://www.purpletulip.ca/2020/08/31/189-revision-v1/',0,'revision','',0),(204,1,'2020-08-31 00:52:54','2020-08-31 00:52:54','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0)\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 252px; padding-bottom: 75px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.71), rgba(255, 255, 255, 0.71)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255,255,255,0.71)\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-weight: 600; background-color: #d6d641; text-align: center; font-size: 28px;\" data-font-weight=\"600\"><strong>Some Testimonials from our clients &amp; their guests</strong></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"Food was delicious 😋 service was very good. Couldn’t have asked for anything more. 10 out of 10. Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 4px;\"><em><strong>\"All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\" - Guest</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"The best caterers in surrey</strong></em>\r\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering.\" - Arvind Suri</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" - Rinku Gandhi-Agarwal</strong></em></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600; text-align: center;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px; padding-top: 0px;\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 91%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-31 00:52:54','2020-08-31 00:52:54','',189,'http://www.purpletulip.ca/2020/08/31/189-revision-v1/',0,'revision','',0),(205,1,'2020-08-31 00:55:09','2020-08-31 00:55:09','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0)\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 252px; padding-bottom: 75px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.71), rgba(255, 255, 255, 0.71)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255,255,255,0.71)\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-weight: 600; background-color: #d6d641; text-align: center; font-size: 28px;\" data-font-weight=\"600\"><strong>Some Testimonials from our clients &amp; their guests</strong></p>\r\n<p class=\"\" style=\"text-align: center;\" data-font-weight=\"600\"><strong>Write us your testimonial below.</strong></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"Food was delicious 😋 service was very good. Couldn’t have asked for anything more. 10 out of 10. Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 4px;\"><em><strong>\"All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\" - Guest</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"The best caterers in surrey</strong></em>\r\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering.\" - Arvind Suri</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" - Rinku Gandhi-Agarwal</strong></em></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600; text-align: center;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px; padding-top: 0px;\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 91%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-08-31 00:55:09','2020-08-31 00:55:09','',189,'http://www.purpletulip.ca/2020/08/31/189-revision-v1/',0,'revision','',0),(253,1,'2020-10-07 19:24:02','2020-10-07 19:24:02','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" data-font-weight=\"600\">Purple Tulip caters fine global cuisine as well as modern &amp; traditional Indian cuisine for your event. Providing unsurpassed quality, our food is curated by an award winning chef who has catered to celebrities like HH Dalai Lama, Rev. Bishop Tutu, Emperor &amp; Empress of Japan to name a few. With over 25 years of culinary experience in countries across the globe and with multiple gold and silver medal wins in culinary challenges, our chef brings you his finely honed culinary skills curating an experience which will wow your guests at your next event.</p>\r\n<p class=\"\">We specialize in custom menus to fit your event, be it a sit down dinner, cocktail reception, live action stations or family style meals.&nbsp; The food is always fresh, flavorful and artistically displayed in a fun and trendy manner.</p>\r\nIf you wish to amaze your guests at your next event, look no further than Purple Tulip Catering to delight your guests and make your event memorable.\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','177-revision-v1','','','2020-10-07 19:24:02','2020-10-07 19:24:02','',177,'http://www.purpletulip.ca/2020/10/07/177-revision-v1/',0,'revision','',0),(206,1,'2020-09-01 02:48:17','2020-09-01 02:48:17','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 22px;\" data-font-weight=\"600\">About us</p>\r\n<p class=\"\" style=\"font-size: 21px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">Purple Tulip caters fine global cuisine as well as modern &amp; traditional Indian cuisine for your event. Providing unsurpassed quality, our food is curated by an award winning chef who has catered to celebrities like HH Dalai Lama, Rev. Bishop Tutu, Emperor &amp; Empress of Japan to name a few. With over 25 years of culinary experience in countries across the globe and with multiple gold and silver medal wins in culinary challenges, our chef brings you his finely honed culinary skills curating an experience which will wow your guests at your next event.</span></p>\r\n<p class=\"\" style=\"font-size: 20px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">We specialize in custom menus to fit your event, be it a sit down dinner, cocktail reception, live action stations or family style meals.&nbsp; The food is always fresh, flavorful and artistically displayed in a fun and trendy manner.</span></p>\r\n<p class=\"\" style=\"font-size: 20px;\"><span style=\"font-size: 8.5pt; font-family: \'Verdana\',sans-serif; color: black;\">If you wish to amaze your guests at your next event, look no further than Purple Tulip Catering to delight your guests and make your event memorable.</span></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','177-revision-v1','','','2020-09-01 02:48:17','2020-09-01 02:48:17','',177,'http://www.purpletulip.ca/2020/09/01/177-revision-v1/',0,'revision','',0),(207,1,'2020-09-02 20:03:26','2020-09-02 20:03:26','<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A9757_big-scaled.jpg\" data-bg-overlaycolor=\"rgba(255,255,255,0)\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 252px; padding-bottom: 75px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.71), rgba(255, 255, 255, 0.71)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/Khaira__photography-by-cashmere_0G7A0175_big.jpg\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255,255,255,0.71)\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-weight: 600; background-color: #d6d641; text-align: center; font-size: 28px;\" data-font-weight=\"600\"><strong>Some Testimonials from our clients &amp; their guests</strong></p>\r\n<p class=\"\" style=\"text-align: center;\" data-font-weight=\"600\"><strong>Write us your testimonial below.</strong></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"I had Purple Tulip Catering for my wedding events earlier this summer. They did an amazing job with everything. Food was consistently delicious, and the presentation was beautiful. I was so glad that I was able to book a tasting beforehand and customize my menu. The variety and creativity purple tulip catering offers is truly one of a kind. Your guests will love every bite!.\" - Jay Dee</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"Food was delicious 😋 service was very good. Couldn’t have asked for anything more. 10 out of 10. Thank you Purple Tulip Catering.\" - Harminder and Sukh Grewal</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 4px;\"><em><strong>\"All food was so delicious 😋😍👌👌👍👍love it❤️❤️😋😀\" - Guest</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"The best caterers in surrey</strong></em>\r\n<em><strong>We attended two wedding events with them and hired them for my dads birthday party recently . Their food is Excellent quality and service is great. Never had such a variety of food it’s not typical menus they customized it for us . Their dessert collection to rice bowl stations and grilled fish was just out of the world . All our guests are still raving about it . I highly recommend them. Their set up was elegant, food was delicious and display beyond our expectations. Calling them for all our events. Thank you Purple Tulip Catering.\" - Arvind Suri</strong></em></p>\r\n<p class=\"\" style=\"border-style: double; border-width: 5px;\"><em><strong>\"We had an excellent experience dinning at Purple Tulip. The food was delicious, each dish was creatively prepared to please the palette, playful colors and beautiful presentation. It was hard to keep room for dessert but we are glad we did else we would have missed out on the best part of the meal.\" - Rinku Gandhi-Agarwal</strong></em></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"color: #f5f4f4; font-weight: 600; text-align: center;\" data-font-weight=\"600\">We thank you for taking the time to leave us your valuable feedback. As the host or a guest who attended an event curated by our team, your feedback will help us do better in going that extra mile.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 5px; padding-top: 0px;\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Thank you for your feedback.\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Host or Guest?\" type=\"text\" required=\"1\"][contact-field label=\"Your Valuable Feedback\" type=\"textarea\" required=\"1\"][/contact-form]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\" style=\"background-image: url(\'https://source.unsplash.com/E6HjQaB7UEA/1920x1080\'); background-size: cover; background-position: 50% 91%;\" data-image-url=\"https://source.unsplash.com/E6HjQaB7UEA/1920x1080\"></div>\r\n</div>\r\n</div>\r\n</div>','Testimonials','','inherit','closed','closed','','189-revision-v1','','','2020-09-02 20:03:26','2020-09-02 20:03:26','',189,'http://www.purpletulip.ca/2020/09/02/189-revision-v1/',0,'revision','',0),(233,1,'2020-09-19 03:23:50','2020-09-19 03:23:50','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n<p class=\"\">Below are some of our popular menus. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. We work closely with you and your event planner to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\">&nbsp;Lunch&nbsp;</p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\r\n<p class=\"\">&nbsp;Indian Inspired Appetizers&nbsp;</p>\r\n<p class=\"\">&nbsp;Indian Inspired Food Stations&nbsp;</p>\r\n<p class=\"\">&nbsp;Sweet Endings&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-09-19 03:23:50','2020-09-19 03:23:50','',144,'http://www.purpletulip.ca/2020/09/19/144-revision-v1/',0,'revision','',0),(208,1,'2020-09-02 20:10:39','2020-09-02 20:10:39','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n<p class=\"\">Below are some of our popular menu. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. Our team works closely with you and your event planners to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Lunch.pdf\">Lunch</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Food-Stations.pdf\">Indian Inspired Food Stations</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Sweet-Endings.pdf\">Sweet Endings</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-09-02 20:10:39','2020-09-02 20:10:39','',144,'http://www.purpletulip.ca/2020/09/02/144-revision-v1/',0,'revision','',0),(209,1,'2020-09-02 20:11:02','2020-09-02 20:11:02','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n<p class=\"\">Below are some of our popular menus. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. Our team works closely with you and your event planners to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Lunch.pdf\">Lunch</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Food-Stations.pdf\">Indian Inspired Food Stations</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Sweet-Endings.pdf\">Sweet Endings</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-09-02 20:11:02','2020-09-02 20:11:02','',144,'http://www.purpletulip.ca/2020/09/02/144-revision-v1/',0,'revision','',0),(210,1,'2020-09-02 20:12:04','2020-09-02 20:12:04','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n<p class=\"\">Below are some of our popular menus. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. We work closely with you and your event planner to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Lunch.pdf\">Lunch</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Food-Stations.pdf\">Indian Inspired Food Stations</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Sweet-Endings.pdf\">Sweet Endings</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-09-02 20:12:04','2020-09-02 20:12:04','',144,'http://www.purpletulip.ca/2020/09/02/144-revision-v1/',0,'revision','',0),(216,0,'2020-09-16 20:56:00','2020-09-16 20:56:00','Igjdfjvkdgvj jfsfcjsjfkj ifjfsifhidjfw iijfosjfd https://mail.ru/?gjvhdfjdfuvdbggf\n<!--more-->\nAUTHOR: Davidtooni\nAUTHOR EMAIL: fedormuravyov1986305a0l@list.ru\nAUTHOR URL: \nSUBJECT: Request for Information\nIP: 156.146.63.185\nArray\n(\n    [1_Name] =&gt; Davidtooni\n    [2_Email] =&gt; fedormuravyov1986305a0l@list.ru\n    [3_Message] =&gt; Igjdfjvkdgvj jfsfcjsjfkj ifjfsifhidjfw iijfosjfd https://mail.ru/?gjvhdfjdfuvdbggf\n    [entry_title] =&gt; Contact Us\n    [entry_permalink] =&gt; http://www.purpletulip.ca/contact-us/\n    [feedback_id] =&gt; 8f491b4dcfc6c828ede2043c44cff726\n)\n','Davidtooni - 2020-09-16 20:56:00','','publish','closed','closed','','8f491b4dcfc6c828ede2043c44cff726','','','2020-09-16 20:56:00','2020-09-16 20:56:00','',183,'http://www.purpletulip.ca/?post_type=feedback&p=216',0,'feedback','',0),(232,1,'2020-09-19 03:23:07','2020-09-19 03:23:07','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n<p class=\"\">Below are some of our popular menus. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. We work closely with you and your event planner to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\">&nbsp;<a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Lunch.pdf\">Lunch</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Food-Stations.pdf\">Indian Inspired Food Stations</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Sweet-Endings.pdf\">Sweet Endings</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-09-19 03:23:07','2020-09-19 03:23:07','',144,'http://www.purpletulip.ca/2020/09/19/144-revision-v1/',0,'revision','',0),(234,1,'2020-09-19 03:28:26','2020-09-19 03:28:26','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n<p class=\"\">Below are some of our popular menus. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. We work closely with you and your event planner to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Lunch.pdf\">Lunch</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\r\n<p class=\"\">&nbsp;Indian Inspired Food Stations&nbsp;</p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Sweet-Endings.pdf\">Sweet Endings</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-09-19 03:28:26','2020-09-19 03:28:26','',144,'http://www.purpletulip.ca/2020/09/19/144-revision-v1/',0,'revision','',0),(240,0,'2020-09-23 04:03:10','2020-09-23 04:03:10','Hi, \r\n\r\nWe are planning our wedding for March 20, 2021, at American Creek Lodge in Hope BC. We are inquiring about your catering services for about 50-100 guests. \r\n\r\nWe would require halal meats to be used. We are hoping to create a menu that is east African/Indian fusion. We would require the cooking,  plates, glasses, cutlery, set up of food, and clean up.  We are hoping to stay within our budget of $4000\r\n\r\nPlease let me know if you have any other questions\n<!--more-->\nAUTHOR: Maariya Khan\nAUTHOR EMAIL: maarzandsaabz@gmail.com\nAUTHOR URL: \nSUBJECT: Request for Information\nIP: 207.6.18.83\nArray\n(\n    [1_Name] =&gt; Maariya Khan\n    [2_Email] =&gt; maarzandsaabz@gmail.com\n    [3_Message] =&gt; Hi, \r\n\r\nWe are planning our wedding for March 20, 2021, at American Creek Lodge in Hope BC. We are inquiring about your catering services for about 50-100 guests. \r\n\r\nWe would require halal meats to be used. We are hoping to create a menu that is east African/Indian fusion. We would require the cooking,  plates, glasses, cutlery, set up of food, and clean up.  We are hoping to stay within our budget of $4000\r\n\r\nPlease let me know if you have any other questions\n    [entry_title] =&gt; Contact Us\n    [entry_permalink] =&gt; https://www.purpletulip.ca/contact-us/\n    [feedback_id] =&gt; df3cf70d5b0c8f86144e72440ddec4f6\n)\n','Maariya Khan - 2020-09-23 04:03:10','','publish','closed','closed','','df3cf70d5b0c8f86144e72440ddec4f6','','','2020-09-23 04:03:10','2020-09-23 04:03:10','',183,'https://www.purpletulip.ca/?post_type=feedback&p=240',0,'feedback','',0),(241,0,'2020-09-24 00:20:28','2020-09-24 00:20:28','Interested in working for you, have several experience in casual/fine dining, and catering, please call me at 6043148496.\n<!--more-->\nAUTHOR: Jesse Hill\nAUTHOR EMAIL: jessehill@gmx.com\nAUTHOR URL: \nSUBJECT: Request for Information\nIP: 205.250.118.239\nArray\n(\n    [1_Name] =&gt; Jesse Hill\n    [2_Email] =&gt; jessehill@gmx.com\n    [3_Message] =&gt; Interested in working for you, have several experience in casual/fine dining, and catering, please call me at 6043148496.\n    [entry_title] =&gt; Contact Us\n    [entry_permalink] =&gt; https://www.purpletulip.ca/contact-us/\n    [feedback_id] =&gt; 979ce9cecd02323368fc0ade635e400d\n)\n','Jesse Hill - 2020-09-24 00:20:28','','publish','closed','closed','','979ce9cecd02323368fc0ade635e400d','','','2020-09-24 00:20:28','2020-09-24 00:20:28','',183,'https://www.purpletulip.ca/?post_type=feedback&p=241',0,'feedback','',0),(269,0,'2020-10-19 21:12:44','2020-10-19 21:12:44','Hi, \r\n\r\nLooking to book you for catering services on April 19th (Monday) and possibly April 15th. for about 50-60 guests (more depending on covid restrictions)\n<!--more-->\nAUTHOR: Amanat Sandhu\nAUTHOR EMAIL: amanat13@hotmail.com\nAUTHOR URL: \nSUBJECT: Request for Information\nIP: 192.234.199.210\nArray\n(\n    [1_Name] =&gt; Amanat Sandhu\n    [2_Email] =&gt; amanat13@hotmail.com\n    [3_Message] =&gt; Hi, \r\n\r\nLooking to book you for catering services on April 19th (Monday) and possibly April 15th. for about 50-60 guests (more depending on covid restrictions)\n    [entry_title] =&gt; Contact Us\n    [entry_permalink] =&gt; http://www.purpletulip.ca/contact-us/\n    [feedback_id] =&gt; b608bdcdf30277e2a46c63c4f57dac68\n)\n','Amanat Sandhu - 2020-10-19 21:12:44','','publish','closed','closed','','b608bdcdf30277e2a46c63c4f57dac68','','','2020-10-19 21:12:44','2020-10-19 21:12:44','',183,'http://www.purpletulip.ca/?post_type=feedback&p=269',0,'feedback','',0),(274,0,'2020-10-20 19:58:34','2020-10-20 19:58:34','I noticed that you are not running Google Remarketing on your website. \r\n \r\nThe most affordable advertising is marketing to previous web viewers who didn\'t convert. \r\n \r\nRemarketing via Google &amp; Facebook ads means tracking and engaging these \'lost\' customers. \r\nThey were on your site once and may only need a reminder of your services and business. \r\n \r\nCan I help you grab these low hanging fruits? \r\n \r\nLinda Ray \r\nEmail - linda@theremarketingguys.com \r\nWebsite - http://www.theremarketingguys.com\n<!--more-->\nAUTHOR: Linda Ray\nAUTHOR EMAIL: linda.ray@theremarketingguys.com\nAUTHOR URL: \nSUBJECT: Request for Information\nIP: 151.106.8.108\nArray\n(\n    [1_Name] =&gt; Linda Ray\n    [2_Email] =&gt; linda.ray@theremarketingguys.com\n    [3_Message] =&gt; I noticed that you are not running Google Remarketing on your website. \r\n \r\nThe most affordable advertising is marketing to previous web viewers who didn\'t convert. \r\n \r\nRemarketing via Google &amp; Facebook ads means tracking and engaging these \'lost\' customers. \r\nThey were on your site once and may only need a reminder of your services and business. \r\n \r\nCan I help you grab these low hanging fruits? \r\n \r\nLinda Ray \r\nEmail - linda@theremarketingguys.com \r\nWebsite - http://www.theremarketingguys.com\n    [entry_title] =&gt; Contact Us\n    [entry_permalink] =&gt; http://www.purpletulip.ca/contact-us/\n    [feedback_id] =&gt; a404815682aeebb7c7bcc8ea058f39e7\n)\n','Linda Ray - 2020-10-20 19:58:34','','publish','closed','closed','','a404815682aeebb7c7bcc8ea058f39e7','','','2020-10-20 19:58:34','2020-10-20 19:58:34','',183,'http://www.purpletulip.ca/?post_type=feedback&p=274',0,'feedback','',0),(276,1,'2020-10-20 21:00:25','2020-10-20 21:00:25','','Contact Form','','publish','closed','closed','','contact-form','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',0,'http://www.purpletulip.ca/2020/10/20/contact-form/',0,'wpuf_contact_form','',0),(289,1,'2020-10-20 23:04:18','2020-10-20 23:04:18','a:17:{s:8:\"template\";s:14:\"checkbox_field\";s:4:\"name\";s:34:\"event_type__select_all_that_apply_\";s:5:\"label\";s:34:\"Event type (select all that apply)\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";a:0:{}s:6:\"inline\";s:3:\"yes\";s:7:\"options\";a:6:{s:17:\"casual_-_drop_off\";s:17:\"Casual - drop off\";s:30:\"buffet_/_family_style_drop_off\";s:30:\"Buffet / Family style drop off\";s:30:\"buffet_/_family_style_-_served\";s:30:\"Buffet / Family style - served\";s:15:\"cocktail/appies\";s:15:\"Cocktail/Appies\";s:21:\"live_cooking_stations\";s:21:\"Live cooking stations\";s:13:\"plated_dinner\";s:13:\"Plated dinner\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:289;}','','','publish','closed','closed','','289','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/289/',8,'wpuf_input','',0),(288,1,'2020-10-20 22:45:44','2020-10-20 22:45:44','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:25:\"number_of_guests_expected\";s:5:\"label\";s:25:\"Number of guests expected\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"small\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:288;}','','','publish','closed','closed','','288','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/288/',5,'wpuf_input','',0),(287,1,'2020-10-20 22:45:08','2020-10-20 22:45:08','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:17:\"location_of_event\";s:5:\"label\";s:17:\"Location of event\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:287;}','','','publish','closed','closed','','287','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/287/',7,'wpuf_input','',0),(293,1,'2020-10-21 00:09:24','2020-10-21 00:09:24','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:26:\"how_did_you_hear_about_us_\";s:5:\"label\";s:26:\"How did you hear about us?\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:3:\"yes\";s:7:\"options\";a:6:{s:13:\"google_search\";s:13:\"Google search\";s:14:\"word_of_mouth_\";s:14:\"Word of mouth \";s:9:\"instagram\";s:9:\"Instagram\";s:8:\"facebook\";s:8:\"Facebook\";s:8:\"referral\";s:8:\"Referral\";s:28:\"attended_an_event_we_catered\";s:28:\"Attended an event we catered\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:293;}','','','publish','closed','closed','','293','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/21/293/',2,'wpuf_input','',0),(292,1,'2020-10-20 23:08:11','2020-10-20 23:08:11','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\r\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\r\n<h1 class=\"color3-color\" style=\"font-size: 4em; margin: 35px 0;\">We create Amazing Dining Experiences</h1>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr class=\"bg-hr\" style=\"border: 2px solid; margin-left: 0px;\" width=\"100%\">\r\n\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin: 30px auto;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</p>\r\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\r\n<p class=\"\">Contact us using the form below.</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">[weforms id=\"276\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\"></div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','183-revision-v1','','','2020-10-20 23:08:11','2020-10-20 23:08:11','',183,'http://www.purpletulip.ca/2020/10/20/183-revision-v1/',0,'revision','',0),(281,1,'2020-10-20 22:37:25','2020-10-20 22:37:25','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\r\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\r\n<h1 class=\"color3-color\" style=\"font-size: 4em; margin: 35px 0;\">We create Amazing Dining Experiences</h1>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr class=\"bg-hr\" style=\"border: 2px solid; margin-left: 0px;\" width=\"100%\">\r\n\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin: 30px auto;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</p>\r\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\r\n<p class=\"\">Contact us using the form below.</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">[weforms id=\"276\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n[contact-form to=\"piyush@purpletulip.ca\" subject=\"Request for Information\"][contact-field label=\"Name\" type=\"name\" required=\"1\"][contact-field label=\"Email\" type=\"email\" required=\"1\"][contact-field label=\"Message\" type=\"textarea\"][/contact-form]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','183-revision-v1','','','2020-10-20 22:37:25','2020-10-20 22:37:25','',183,'http://www.purpletulip.ca/2020/10/20/183-revision-v1/',0,'revision','',0),(282,1,'2020-10-20 22:44:43','2020-10-20 22:44:43','a:20:{s:8:\"template\";s:10:\"name_field\";s:4:\"name\";s:4:\"name\";s:5:\"label\";s:4:\"Name\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:6:\"inline\";s:3:\"yes\";s:9:\"hide_subs\";b:0;s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:282;}','','','publish','closed','closed','','282','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/282/',0,'wpuf_input','',0),(283,1,'2020-10-20 22:44:43','2020-10-20 22:44:43','a:14:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";s:2:\"id\";i:283;}','','','publish','closed','closed','','283','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/283/',1,'wpuf_input','',0),(284,1,'2020-10-20 22:44:43','2020-10-20 22:44:43','a:17:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:7:\"message\";s:5:\"label\";s:7:\"Message\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:2:\"id\";i:284;}','','','publish','closed','closed','','284','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/284/',3,'wpuf_input','',0),(285,1,'2020-10-20 22:44:43','2020-10-20 22:44:43','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:98:\"event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_\";s:5:\"label\";s:97:\"Event / Occasion (wedding, bridal shower, pre-wedding event, anniversary, milestone birthday etc)\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:285;}','','','publish','closed','closed','','285','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/285/',6,'wpuf_input','',0),(286,1,'2020-10-20 22:44:43','2020-10-20 22:44:43','a:17:{s:8:\"template\";s:10:\"date_field\";s:4:\"name\";s:20:\"date___time_of_event\";s:5:\"label\";s:20:\"Date & Time of event\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"small\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:8:\"dd/mm/yy\";s:4:\"time\";s:3:\"yes\";s:15:\"is_publish_time\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:286;}','','','publish','closed','closed','','286','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/286/',4,'wpuf_input','',0),(290,1,'2020-10-20 23:04:18','2020-10-20 23:04:18','a:17:{s:8:\"template\";s:14:\"checkbox_field\";s:4:\"name\";s:18:\"cuisine_preference\";s:5:\"label\";s:18:\"Cuisine preference\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";a:0:{}s:6:\"inline\";s:3:\"yes\";s:7:\"options\";a:5:{s:10:\"west_coast\";s:10:\"West Coast\";s:6:\"global\";s:6:\"Global\";s:20:\"indian_-_traditional\";s:20:\"Indian - Traditional\";s:20:\"indian_-_progressive\";s:20:\"Indian - Progressive\";s:14:\"other_-_custom\";s:14:\"Other - Custom\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:290;}','','','publish','closed','closed','','290','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/290/',9,'wpuf_input','',0),(291,1,'2020-10-20 23:04:18','2020-10-20 23:04:18','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:30:\"other_notes___special_requests\";s:5:\"label\";s:30:\"Other notes / Special requests\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:291;}','','','publish','closed','closed','','291','','','2020-10-21 00:17:35','2020-10-21 00:17:35','',276,'http://www.purpletulip.ca/2020/10/20/291/',10,'wpuf_input','',0),(294,1,'2020-10-21 00:15:40','2020-10-21 00:15:40','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\n<h1 class=\"color3-color hidden-xs hidden-sm hidden-md\" style=\"font-size: 4em; margin: 35px 0px; padding: 0em;\">We create Amazing Dining Experiences</h1>\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\"><span style=\"font-size: 1rem;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</span></div>\n</div>\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\n<p class=\"\">Contact us using the form below.</p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\">[weforms id=\"276\"]</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\"></div>\n</div>\n</div>','Planning an event','','inherit','closed','closed','','183-autosave-v1','','','2020-10-21 00:15:40','2020-10-21 00:15:40','',183,'http://www.purpletulip.ca/2020/10/21/183-autosave-v1/',0,'revision','',0),(296,1,'2020-10-21 00:16:25','2020-10-21 00:16:25','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\r\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\r\n<h1 class=\"color3-color hidden-xs hidden-sm hidden-md\" style=\"font-size: 4em; margin: 35px 0px; padding: 0em;\">We create Amazing Dining Experiences</h1>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"><span style=\"font-size: 1rem;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</span></div>\r\n</div>\r\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\r\n<p class=\"\">Contact us using the form below.</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">[weforms id=\"276\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\"></div>\r\n</div>\r\n</div>','Planning an event? Contact us to wow your guests!','','inherit','closed','closed','','183-revision-v1','','','2020-10-21 00:16:25','2020-10-21 00:16:25','',183,'http://www.purpletulip.ca/2020/10/21/183-revision-v1/',0,'revision','',0),(295,1,'2020-10-21 00:14:37','2020-10-21 00:14:37','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\r\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\r\n<h1 class=\"color3-color hidden-xs hidden-sm hidden-md\" style=\"font-size: 4em; margin: 35px 0px; padding: 0em;\">We create Amazing Dining Experiences</h1>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr class=\"bg-hr\" style=\"border: 2px solid; margin-left: 0px;\" width=\"100%\">\r\n\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin: 30px auto;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</p>\r\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\r\n<p class=\"\">Contact us using the form below.</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">[weforms id=\"276\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\"></div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','183-revision-v1','','','2020-10-21 00:14:37','2020-10-21 00:14:37','',183,'http://www.purpletulip.ca/2020/10/21/183-revision-v1/',0,'revision','',0),(298,1,'2020-10-21 20:20:39','2020-10-21 20:20:39','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\r\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\r\n<h1 class=\"color3-color hidden-xs hidden-sm hidden-md\" style=\"font-size: 4em; margin: 35px 0px; padding: 0em;\">We create Amazing Dining Experiences</h1>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"><span style=\"font-size: 1rem;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</span></div>\r\n</div>\r\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\r\n<p class=\"\">Contact us using the form below.</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">[weforms id=\"276\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\"></div>\r\n</div>\r\n</div>','Contact us for your catering needs and to wow your guests!','','inherit','closed','closed','','183-revision-v1','','','2020-10-21 20:20:39','2020-10-21 20:20:39','',183,'http://www.purpletulip.ca/2020/10/21/183-revision-v1/',0,'revision','',0),(307,0,'2021-01-01 02:02:41','2021-01-01 02:02:41','cialis marke 20mg cialis 20mg pills cialis no prescription\n<!--more-->\nAUTHOR: Fqbftrupt\nAUTHOR EMAIL: wilfredfarjgsgd3phi@gmail.com\nAUTHOR URL: \nSUBJECT: Thank you for your feedback.\nIP: 178.159.37.28\nArray\n(\n    [1_Name] =&gt; Fqbftrupt\n    [2_Email] =&gt; wilfredfarjgsgd3phi@gmail.com\n    [3_Host or Guest?] =&gt; 717419\n    [4_Your Valuable Feedback] =&gt; cialis marke 20mg cialis 20mg pills cialis no prescription\n    [email_marketing_consent] =&gt; \n    [entry_title] =&gt; Testimonials\n    [entry_permalink] =&gt; http://www.purpletulip.ca/testimonials/\n    [feedback_id] =&gt; 97cddf45ca257cd3c430f5a3f990af90\n)\n','Fqbftrupt - 2021-01-01 02:02:41','','publish','closed','closed','','97cddf45ca257cd3c430f5a3f990af90','','','2021-01-01 02:02:41','2021-01-01 02:02:41','',189,'http://www.purpletulip.ca/?post_type=feedback&p=307',0,'feedback','',0),(309,0,'2021-03-25 21:10:44','2021-03-25 21:10:44','Muchas gracias. ?Como puedo iniciar sesion?\n<!--more-->\nAUTHOR: djlqmvbkoc\nAUTHOR EMAIL: 8b5f9a3c46aac575bcafb6156d4159ff.roopert@ssemarketing.net\nAUTHOR URL: \nSUBJECT: Thank you for your feedback.\nIP: 195.176.3.20\nArray\n(\n    [1_Name] =&gt; djlqmvbkoc\n    [2_Email] =&gt; 8b5f9a3c46aac575bcafb6156d4159ff.roopert@ssemarketing.net\n    [3_Host or Guest?] =&gt; cpxysifdah\n    [4_Your Valuable Feedback] =&gt; Muchas gracias. ?Como puedo iniciar sesion?\n    [email_marketing_consent] =&gt; \n    [entry_title] =&gt; Testimonials\n    [entry_permalink] =&gt; http://www.purpletulip.ca/testimonials/\n    [feedback_id] =&gt; 1101e7f9d9663621ee7a755e1f8ff03e\n)\n','djlqmvbkoc - 2021-03-25 21:10:44','','publish','closed','closed','','1101e7f9d9663621ee7a755e1f8ff03e','','','2021-03-25 21:10:44','2021-03-25 21:10:44','',189,'http://www.purpletulip.ca/?post_type=feedback&p=309',0,'feedback','',0),(300,1,'2020-10-21 20:23:40','2020-10-21 20:23:40','<div class=\"color2-background-color bg-background-color tmpl-call_to_action-5 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #ffffff; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url(\'http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\');\" data-bg-overlaycolor=\"rgba(13, 71, 161, 0.8)\" data-image-url=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops97626e66ccf9a5b4e6e2396c26f8557e.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-8 col-xs-12\">\r\n<div style=\"padding: 20% 12%;\" class=\"bg-box\">\r\n<h1 class=\"color3-color hidden-xs hidden-sm hidden-md\" style=\"font-size: 4em; margin: 35px 0px; padding: 0em;\">We create Amazing Dining Experiences</h1>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"><span style=\"font-size: 1rem;\">At Purple Tulip Catering, we are committed to our craft and we ensure you have the best dining experience from our skilled team of professionals.&nbsp;</span></div>\r\n</div>\r\n<p class=\"\" style=\"margin: 30px auto;\">There is no event too small for us.&nbsp; We are passionate about our food and service and we look forward to catering your next event. Have a custom request, no problem. Our team will be happy to work with you to accommodate your requests.</p>\r\n<p class=\"\">Contact us using the form below.</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">[weforms id=\"276\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\"></div>\r\n</div>\r\n</div>','Planning an event? Contact us for your catering needs and to wow your guests!','','inherit','closed','closed','','183-revision-v1','','','2020-10-21 20:23:40','2020-10-21 20:23:40','',183,'http://www.purpletulip.ca/2020/10/21/183-revision-v1/',0,'revision','',0),(301,1,'2020-10-21 21:29:35','2020-10-21 21:29:35','','Traditional Indian Buffet','','inherit','open','closed','','traditional-indian-buffet','','','2020-10-21 21:29:35','2020-10-21 21:29:35','',0,'http://www.purpletulip.ca/wp-content/uploads/2020/10/Traditional-Indian-Buffet.pdf',0,'attachment','application/pdf',0),(303,1,'2020-10-21 21:51:24','2020-10-21 21:51:24','<div class=\"color4-background-color color-4-text-contrast bg-background-color tmpl-services-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 60px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 text-center\">\r\n<p class=\"h1\" style=\"text-transform: uppercase; font-size: 3em;\">Our Menus</p>\r\n<p class=\"\">Below are some of our popular menus. We can customize the menus around your needs, occasion, festivity or cuisine. Our culinary team is proficient with cuisines from across the globe. We work closely with you and your event planner to provide you with an unforgettable culinary journey that is fun, innovative and full of mouth watering goodness!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 70px; padding-bottom: 100px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 text-center align-column-center background-parallax\">\r\n<div style=\"padding: 20% 0px;\" class=\"color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Breakfast.pdf\">Breakfast</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Lunch.pdf\">Lunch</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Dinner-Buffet.pdf\">Dinner Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Plated-Dinner.pdf\">Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Canapes-Hors-doeuvres.pdf\">Canapes &amp; Hors d\'oeuvres</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Reception-Platters.pdf\">Reception Platters</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/Indian-Inspired-Plated-Dinner.pdf\">Indian Inspired Plated Dinner</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Indian-Inspired-Appetizers.pdf\">Indian Inspired Appetizers</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/10/Indian-Inspired-Food-Stations.pdf\">Indian Inspired Food Stations</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/10/Traditional-Indian-Buffet.pdf\">Traditional Indian Buffet</a></p>\r\n<p class=\"\"><a href=\"http://www.purpletulip.ca/wp-content/uploads/2020/09/Sweet-Endings.pdf\">Sweet Endings</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 text-center align-column-center\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-126 alignleft\" style=\"color: #000000;\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/20131121_105235_Android-1024x765.jpg\" alt=\"\" width=\"436\" height=\"326\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-115 size-medium\" src=\"http://www.purpletulip.ca/wp-content/uploads/2020/08/0_286_400_250.390625_Causas-1024x1013.jpg\" alt=\"\" width=\"400\" height=\"250\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Menus','','inherit','closed','closed','','144-revision-v1','','','2020-10-21 21:51:24','2020-10-21 21:51:24','',144,'http://www.purpletulip.ca/2020/10/21/144-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wpw8_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_term_relationships`
--

DROP TABLE IF EXISTS `wpw8_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_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 `wpw8_term_relationships`
--

LOCK TABLES `wpw8_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpw8_term_relationships` DISABLE KEYS */;
INSERT INTO `wpw8_term_relationships` VALUES (147,5,0),(146,5,0),(180,5,0),(187,5,0),(192,5,0);
/*!40000 ALTER TABLE `wpw8_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_term_taxonomy`
--

DROP TABLE IF EXISTS `wpw8_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_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=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_term_taxonomy`
--

LOCK TABLES `wpw8_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpw8_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpw8_term_taxonomy` VALUES (1,1,'category','',0,0),(5,5,'nav_menu','',0,5);
/*!40000 ALTER TABLE `wpw8_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_termmeta`
--

DROP TABLE IF EXISTS `wpw8_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_termmeta`
--

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

--
-- Table structure for table `wpw8_terms`
--

DROP TABLE IF EXISTS `wpw8_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_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=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_terms`
--

LOCK TABLES `wpw8_terms` WRITE;
/*!40000 ALTER TABLE `wpw8_terms` DISABLE KEYS */;
INSERT INTO `wpw8_terms` VALUES (1,'Uncategorized','uncategorized',0),(5,'Main','main',0);
/*!40000 ALTER TABLE `wpw8_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_usermeta`
--

DROP TABLE IF EXISTS `wpw8_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_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=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_usermeta`
--

LOCK TABLES `wpw8_usermeta` WRITE;
/*!40000 ALTER TABLE `wpw8_usermeta` DISABLE KEYS */;
INSERT INTO `wpw8_usermeta` VALUES (1,1,'nickname','piyush'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpw8_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpw8_user_level','10'),(14,1,'dismissed_wp_pointers',',wp410_dfw'),(15,1,'show_welcome_panel','1'),(37,1,'default_password_nag',''),(17,1,'bglibDashboardOrder','1'),(30,1,'jetpack_tracks_anon_id','jetpack:HDqMJr/0H8Fj9tuIKYjuzFMv'),(19,1,'wpw8_dashboard_quick_press_last_post_id','310'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.84.140.0\";}'),(21,1,'wpw8_user-settings','libraryContent=browse&advImgDetails=show&editor_plain_text_paste_warning=1&post_dfw=on&editor=tinymce'),(22,1,'wpw8_user-settings-time','1602095771'),(23,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:15:\"title-attribute\";i:2;s:11:\"css-classes\";i:3;s:3:\"xfn\";i:4;s:11:\"description\";}'),(24,1,'first_login','2020-08-29 00:25:17'),(25,1,'last_login','2021-08-23 07:34:01'),(27,1,'nav_menu_recently_edited','3'),(28,1,'metaboxhidden_nav-menus','a:3:{i:0;s:22:\"add-post-type-bg_block\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(29,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1598679716;}'),(31,1,'jetpack_tracks_wpcom_id','184004553'),(32,1,'meta-box-order_page','a:3:{s:4:\"side\";s:36:\"submitdiv,postimagediv,pageparentdiv\";s:6:\"normal\";s:70:\"revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),(33,1,'screen_layout_page','2'),(34,1,'closedpostboxes_page','a:1:{i:0;s:12:\"postimagediv\";}'),(35,1,'metaboxhidden_page','a:6:{i:0;s:12:\"revisionsdiv\";i:1;s:10:\"postcustom\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(36,1,'wpw8_media_library_mode','grid');
/*!40000 ALTER TABLE `wpw8_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_users`
--

DROP TABLE IF EXISTS `wpw8_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_users`
--

LOCK TABLES `wpw8_users` WRITE;
/*!40000 ALTER TABLE `wpw8_users` DISABLE KEYS */;
INSERT INTO `wpw8_users` VALUES (1,'piyush','$P$BEIXJYaeevh1QStmamCqli4tYjveiL/','piyush','piyush@purpletulip.ca','http://www.purpletulip.ca','2020-04-22 03:52:59','',0,'piyush');
/*!40000 ALTER TABLE `wpw8_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_weforms_entries`
--

DROP TABLE IF EXISTS `wpw8_weforms_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_weforms_entries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` int(11) unsigned DEFAULT NULL,
  `user_device` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'publish',
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=103 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_weforms_entries`
--

LOCK TABLES `wpw8_weforms_entries` WRITE;
/*!40000 ALTER TABLE `wpw8_weforms_entries` DISABLE KEYS */;
INSERT INTO `wpw8_weforms_entries` VALUES (1,276,0,2585032979,'Google Chrome/Windows','http://www.purpletulip.ca/contact-us/','publish','2020-10-21 00:27:05'),(2,276,0,2914330804,'Apple Safari/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2020-10-21 05:28:29'),(3,276,0,3091464014,'Google Chrome/Windows','https://www.purpletulip.ca/contact-us/','publish','2020-10-29 20:53:12'),(4,276,0,3509868714,'Apple Safari/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2020-12-10 19:25:54'),(5,276,0,87960556,'Google Chrome/Linux','https://www.purpletulip.ca/contact-us/','publish','2020-12-13 15:53:23'),(6,276,0,1179002070,'Google Chrome/Windows','http://www.purpletulip.ca/contact-us/','publish','2020-12-18 22:21:56'),(7,276,0,392134676,'Google Chrome/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-01-03 11:21:40'),(8,276,0,3221483719,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-01-05 11:56:03'),(9,276,0,3221477367,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-01-06 02:37:28'),(10,276,0,392879069,'Google Chrome/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-01-14 15:33:57'),(11,276,0,3221477342,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-01-20 16:40:57'),(12,276,0,392055742,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-01-23 08:26:00'),(13,276,0,392878921,'Google Chrome/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-01-29 17:00:28'),(14,276,0,679036514,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-02-01 11:39:43'),(15,276,0,3221429493,'Google Chrome/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-02-01 11:46:08'),(16,276,0,1758673254,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-02-03 04:59:42'),(17,276,0,2901787377,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-02-06 22:13:23'),(18,276,0,2914344153,'Google Chrome/Linux','https://www.purpletulip.ca/contact-us/','publish','2021-02-07 05:04:21'),(19,276,0,3324947833,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-02-14 12:51:28'),(20,276,0,222374967,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-02-15 08:46:48'),(21,276,0,392336889,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-02-19 13:13:57'),(22,276,0,87699225,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-02-22 15:01:47'),(23,276,0,1179643265,'Unknown/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-02-24 02:55:45'),(24,276,0,888803119,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-02-25 07:52:44'),(25,276,0,94178267,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-03 18:01:05'),(26,276,0,888804252,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-09 05:09:54'),(27,276,0,765042299,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-12 09:15:06'),(28,276,0,844907729,'Google Chrome/Linux','https://www.purpletulip.ca/contact-us/','publish','2021-03-18 18:15:01'),(29,276,0,3304215589,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-24 08:30:31'),(30,276,0,883078080,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-24 12:49:23'),(31,276,0,3304196818,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-24 17:40:34'),(32,276,0,839106747,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-25 04:00:25'),(33,276,0,392230923,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-27 13:16:21'),(34,276,0,2306098290,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-28 15:19:29'),(35,276,0,3289572813,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-28 19:36:39'),(36,276,0,2306098290,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-28 23:29:20'),(37,276,0,1747835874,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-03-31 13:30:52'),(38,276,0,761194729,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-02 08:31:22'),(39,276,0,3304077897,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-05 09:44:17'),(40,276,0,887993010,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-07 13:27:12'),(41,276,0,392542257,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-08 10:31:18'),(42,276,0,1179042267,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-09 19:41:49'),(43,276,0,3304438582,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-12 06:46:13'),(44,276,0,884043866,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-12 20:12:27'),(45,276,0,762852211,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-17 09:13:17'),(46,276,0,761210636,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-18 07:19:43'),(47,276,0,884043866,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-19 10:20:22'),(48,276,0,1389566204,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-22 09:12:42'),(49,276,0,1085597812,'Unknown/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-25 00:18:40'),(50,276,0,884043866,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-04-27 14:58:50'),(51,276,0,3463742417,'Apple Safari/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-05-08 02:43:11'),(52,276,0,3115994510,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-05-10 18:33:37'),(53,276,0,316575071,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-05-10 21:30:11'),(54,276,0,316575071,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-05-11 11:57:05'),(55,276,0,392095468,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-05-16 08:55:32'),(56,276,0,2658395134,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-05-19 14:21:07'),(57,276,0,3221484670,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-05-22 02:26:04'),(58,276,0,2824552655,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-05-24 11:14:35'),(59,276,0,1759744628,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-05-25 14:08:56'),(60,276,0,391779520,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-05-28 10:37:13'),(61,276,0,1806622901,'Google Chrome/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-05-29 08:25:42'),(62,276,0,1805568612,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-01 15:58:22'),(63,276,0,1217390026,'Apple Safari/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-06-02 23:10:30'),(64,276,0,1217390026,'Apple Safari/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-06-02 23:20:48'),(65,276,0,3280620668,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-03 04:43:06'),(66,276,0,1441687277,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-05 02:51:41'),(67,276,0,3031121372,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-08 05:02:54'),(68,276,0,3211172444,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-09 11:41:18'),(69,276,0,764986934,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-10 11:46:33'),(70,276,0,1759434777,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-12 13:50:49'),(71,276,0,3211167667,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-14 13:34:37'),(72,276,0,3091307718,'Apple Safari/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-06-15 03:47:24'),(73,276,0,2734522756,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-16 02:20:11'),(74,276,0,3211179369,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-17 00:57:41'),(75,276,0,3289571638,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-17 11:23:48'),(76,276,0,2734522837,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-18 18:05:47'),(77,276,0,1759434788,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-18 20:32:45'),(78,276,0,2857611586,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-21 15:33:04'),(79,276,0,1755319248,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-23 17:05:30'),(80,276,0,2493730414,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-27 19:25:28'),(81,276,0,316557314,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-28 12:26:41'),(82,276,0,316557314,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-06-30 11:50:35'),(83,276,0,1759434956,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-07-02 13:28:52'),(84,276,0,3398828319,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-07-09 06:24:23'),(85,276,0,844890944,'Unknown/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-07-09 20:21:22'),(86,276,0,3118890130,'Google Chrome/MAC OS','','publish','2021-07-19 20:53:34'),(87,276,0,1086057519,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-07-21 10:45:25'),(88,276,0,3356109148,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-07-26 03:58:16'),(89,276,0,3318881532,'Google Chrome/Linux','https://www.purpletulip.ca/contact-us/','publish','2021-07-26 15:56:47'),(90,276,0,1759434847,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-07-27 08:31:14'),(91,276,0,1742596693,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-01 08:56:11'),(92,276,0,391143849,'Google Chrome/MAC OS','https://www.purpletulip.ca/contact-us/','publish','2021-08-01 21:39:44'),(93,276,0,3111823996,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-02 02:45:32'),(94,276,0,3132298876,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-02 19:35:50'),(95,276,0,3115715487,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-03 14:24:45'),(96,276,0,3289643485,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-09 06:14:32'),(97,276,0,533659779,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-09 21:00:54'),(98,276,0,3115715560,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-11 15:47:10'),(99,276,0,2893020418,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-17 21:04:49'),(100,276,0,392159385,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-18 08:03:51'),(101,276,0,1806603338,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-20 12:22:32'),(102,276,0,1806547397,'Google Chrome/MAC OS','http://www.purpletulip.ca/contact-us/','publish','2021-08-25 14:46:15');
/*!40000 ALTER TABLE `wpw8_weforms_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_weforms_entrymeta`
--

DROP TABLE IF EXISTS `wpw8_weforms_entrymeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_weforms_entrymeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `weforms_entry_id` bigint(20) unsigned 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` (`weforms_entry_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1123 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_weforms_entrymeta`
--

LOCK TABLES `wpw8_weforms_entrymeta` WRITE;
/*!40000 ALTER TABLE `wpw8_weforms_entrymeta` DISABLE KEYS */;
INSERT INTO `wpw8_weforms_entrymeta` VALUES (1,1,'name','Piyush| | Sahay'),(2,1,'email','piyush@piyush.ca'),(3,1,'how_did_you_hear_about_us_','Referral'),(4,1,'message','This is a test'),(5,1,'date___time_of_event','31/10/2020 19:00'),(6,1,'number_of_guests_expected','100'),(7,1,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Fun'),(8,1,'location_of_event','None'),(9,1,'event_type__select_all_that_apply_','Buffet / Family style drop off| Cocktail/Appies'),(10,1,'cuisine_preference','West Coast| Indian - Traditional'),(11,1,'other_notes___special_requests','This is a test'),(12,2,'name','Jaspreet| | Basutta'),(13,2,'email','jaspreetbasutta@hotmail.com'),(14,2,'how_did_you_hear_about_us_','Instagram'),(15,2,'message','Hi, I am looking to get catering for my one of my wedding events.'),(16,2,'date___time_of_event','17/10/2020 00:00'),(17,2,'number_of_guests_expected','50'),(18,2,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Pre wedding event'),(19,2,'location_of_event','Home'),(20,2,'event_type__select_all_that_apply_','Buffet / Family style - served| Cocktail/Appies| Plated dinner'),(21,2,'cuisine_preference','West Coast'),(22,2,'other_notes___special_requests','Italian/ western dinner'),(23,3,'name','Dawn| | Nicklason'),(24,3,'email','dawn@axisrealestate.ca'),(25,3,'how_did_you_hear_about_us_','Word of mouth '),(26,3,'message','We are planning on having a very small get together in our office for approx 15 people on Dec 18. As long as no restrictions have come out. My boss noticed in the Dapran magazine you have done Michelin Star serving. He would like us to experience indian food in a michelin star setting. Do you do something like this. I see your menus and we are looking for a bit more. thank you'),(27,3,'date___time_of_event','12/18/2020'),(28,3,'number_of_guests_expected','15'),(29,3,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','christmas staff'),(30,3,'location_of_event','213 - 17660 65A Avenue'),(31,3,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations'),(32,3,'cuisine_preference','Indian - Traditional| Indian - Progressive'),(33,3,'other_notes___special_requests',''),(34,4,'name','Ben| | Kandola'),(35,4,'email','kullykkandola@gmail.com'),(36,4,'how_did_you_hear_about_us_','Referral'),(37,4,'message','Decor ladies'),(38,4,'date___time_of_event','24/08/2021 00:00'),(39,4,'number_of_guests_expected','100'),(40,4,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Wedding'),(41,4,'location_of_event','378 200 st Langley'),(42,4,'event_type__select_all_that_apply_','Buffet / Family style - served'),(43,4,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive'),(44,4,'other_notes___special_requests',''),(45,5,'name','Punjabi| | Sikh'),(46,5,'email','cantwaittoseeyou@gmail.com'),(47,5,'how_did_you_hear_about_us_','Facebook'),(48,5,'message','Hey buddy. Saw all your facebook book posts.... I was wondering when you are available to see face to face so we can discuss those matters and Would really love to hear those things come out of your stupid mouth in person'),(49,5,'date___time_of_event','01/12/2020 00:00'),(50,5,'number_of_guests_expected','1'),(51,5,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Sikh protest'),(52,5,'location_of_event','Surrey canada'),(53,5,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(54,5,'cuisine_preference','Other - Custom'),(55,5,'other_notes___special_requests','Theres going to be alot of us so be prepared'),(56,6,'name','Neetu| | Khinda'),(57,6,'email','neetu.k.khinda@gmail.com'),(58,6,'how_did_you_hear_about_us_','Instagram'),(59,6,'message','Hello, I am just emailing to see if you are available in 2021 for an event and the price list'),(60,6,'date___time_of_event','05/09/2021 18:30'),(61,6,'number_of_guests_expected','50-100'),(62,6,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Reception'),(63,6,'location_of_event','Our Home Back Yard'),(64,6,'event_type__select_all_that_apply_','Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(65,6,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(66,6,'other_notes___special_requests','I am a bit indecisive on the last two questions so have clicked a few different options as would like to discuse further with the family'),(67,7,'name','Klara Kingsbury| | Kingsbury'),(68,7,'email','klara.kingsbury@googlemail.com'),(69,7,'how_did_you_hear_about_us_','Google search'),(70,7,'message','Hi, We\'re wondering if you\'ve ever considered taking the content from purpletulip.ca and converting it into videos to promote on social media platforms such as Youtube? It\'s another \'rod in the pond\' in terms of traffic generation, as so many people use Youtube. You can read a bit more about the software here: https://www.vidnami.com/c/Volben12-vn-freetrial Kind Regards, Klara'),(71,7,'date___time_of_event',''),(72,7,'number_of_guests_expected','L a Jitul'),(73,7,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Pzsldd wmp'),(74,7,'location_of_event','Qsayocb Q'),(75,7,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(76,7,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(77,7,'other_notes___special_requests','Hi, We\'re wondering if you\'ve ever considered taking the content from purpletulip.ca and converting it into videos to promote on social media platforms such as Youtube? It\'s another \'rod in the pond\' in terms of traffic generation, as so many people use Youtube. You can read a bit more about the software here: https://www.vidnami.com/c/Yamasi20-vn-freetrial Kind Regards, Klara'),(78,8,'name','Eric Jones| | Jones'),(79,8,'email','ericjonesonline@outlook.com'),(80,8,'how_did_you_hear_about_us_','Google search'),(81,8,'message','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithcustomer.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(82,8,'date___time_of_event',''),(83,8,'number_of_guests_expected','Q Eujqvtlpq'),(84,8,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Fkxs d zvmp'),(85,8,'location_of_event','O Zrn kuk'),(86,8,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(87,8,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(88,8,'other_notes___special_requests','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithcustomer.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(89,9,'name','Eric Jones| | Jones'),(90,9,'email','ericjonesonline@outlook.com'),(91,9,'how_did_you_hear_about_us_','Google search'),(92,9,'message','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(93,9,'date___time_of_event',''),(94,9,'number_of_guests_expected','Tpyjyerdvcz'),(95,9,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Sb q gwu wq'),(96,9,'location_of_event','Arwafd xe pi'),(97,9,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(98,9,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(99,9,'other_notes___special_requests','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(100,10,'name','Steve James| | James'),(101,10,'email','steve@explainervideos4u.info'),(102,10,'how_did_you_hear_about_us_','Google search'),(103,10,'message','Hi, We\'d like to introduce to you our explainer video service which we feel can benefit your site purpletulip.ca. Check out some of our existing videos here: https://www.youtube.com/watch?v=zvGF7uRfH04 https://www.youtube.com/watch?v=cZPsp217Iik https://www.youtube.com/watch?v=JHfnqS2zpU8 All of our videos are in a similar animated format as the above examples and we have voice over artists with US/UK/Australian accents. They can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video such as Youtube, and can be embedded into your website or featured on landing pages. Our prices are as follows depending on video length: 0-1 minutes = $189 1-2 minutes = $269 2-3 minutes = $379 *All prices above are in USD and include a custom video, full script and a voice-over. If this is something you would like to discuss further, don\'t hesitate to get in touch. If you are not interested, simply delete this message and we won\'t contact you again. Kind Regards, Steve'),(104,10,'date___time_of_event',''),(105,10,'number_of_guests_expected','Bhormirgfc'),(106,10,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Uelitrkc qb'),(107,10,'location_of_event','H kpyp'),(108,10,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(109,10,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(110,10,'other_notes___special_requests','Hi, We\'d like to introduce to you our explainer video service which we feel can benefit your site purpletulip.ca. Check out some of our existing videos here: https://www.youtube.com/watch?v=zvGF7uRfH04 https://www.youtube.com/watch?v=cZPsp217Iik https://www.youtube.com/watch?v=JHfnqS2zpU8 All of our videos are in a similar animated format as the above examples and we have voice over artists with US/UK/Australian accents. They can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video such as Youtube, and can be embedded into your website or featured on landing pages. Our prices are as follows depending on video length: 0-1 minutes = $189 1-2 minutes = $279 2-3 minutes = $389 3-4 minutes = $489 *All prices above are in USD and include a custom video, full script and a voice-over. If this is something you would like to discuss further, don\'t hesitate to get in touch. If you are not interested, simply delete this message and we won\'t contact you again. Kind Regards, Steve'),(111,11,'name','Eric Jones| | Jones'),(112,11,'email','ericjonesonline@outlook.com'),(113,11,'how_did_you_hear_about_us_','Google search'),(114,11,'message','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithcustomer.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(115,11,'date___time_of_event',''),(116,11,'number_of_guests_expected','Sp ni e wg P'),(117,11,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Cktfanv'),(118,11,'location_of_event','D Xs Vej z'),(119,11,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(120,11,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(121,11,'other_notes___special_requests','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithcustomer.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(122,12,'name','Eric Jones| | Jones'),(123,12,'email','ericjonesonline@outlook.com'),(124,12,'how_did_you_hear_about_us_','Google search'),(125,12,'message','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(126,12,'date___time_of_event',''),(127,12,'number_of_guests_expected','Ceof a jaqx Jh'),(128,12,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Arhqhhfp'),(129,12,'location_of_event','Bsgfvjedrkp'),(130,12,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(131,12,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(132,12,'other_notes___special_requests','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(133,13,'name','Erica Jackson| | Jackson'),(134,13,'email','ericajacksonmi0@yahoo.com'),(135,13,'how_did_you_hear_about_us_','Google search'),(136,13,'message','Hi, We\'re wondering if you\'d be interested in a \'dofollow\' backlink to purpletulip.ca from our DA50 website? Our website is dedicated to facts/education, and so can host articles on pretty much any topic. You can either write a new article yourself, or we can link from existing content. The price is just $45 and you can pay once the article/link has been published. This is a one-time fee, so there are no extra charges. If you\'re interested, please reply to this email, including the word \'interested\' in the Subject Field. Not sure what DA is? Have a read here: https://moz.com/learn/seo/domain-authority Kind Regards, Erica'),(137,13,'date___time_of_event',''),(138,13,'number_of_guests_expected','Oz i Zh'),(139,13,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Cw Ab'),(140,13,'location_of_event','Qoc Czz j D'),(141,13,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(142,13,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(143,13,'other_notes___special_requests','Hi, We\'re wondering if you\'d be interested in a \'dofollow\' backlink to purpletulip.ca from our DA50 website? Our website is dedicated to facts/education, and so can host articles on pretty much any topic. You can either write a new article yourself, or we can link from existing content. The price is just $45 and you can pay once the article/link has been published. This is a one-time fee, so there are no extra charges. Also: Once the article has been published, and your backlink has been added, it will be shared out to over 2.8 million social media followers (if it\'s educationally based). This means you aren\'t just getting the high valued backlink, you\'re also getting the potential of more traffic to your site. If you\'re interested, please reply to this email, including the word \'interested\' in the Subject Field. Kind Regards, Erica'),(144,14,'name','Rocco Bayly| | Bayly'),(145,14,'email','rocco@sendbulkmails.com'),(146,14,'how_did_you_hear_about_us_','Google search'),(147,14,'message','Use SendBulkMails.com to run email campaigns from your own private dashboard. Cold emails are allowed and won\'t get you blocked :) Starter Package 50% off sale - 1Mil emails / mo @ $99 USD - Dedicated IP and Domain Included - Detailed statistical reports (delivery, bounce, clicks etc.) - Quick and easy setup with extended support at no extra cost. - Cancel anytime! Regards, www.SendBulkMails.com'),(148,14,'date___time_of_event',''),(149,14,'number_of_guests_expected','Zi y Olpk la B'),(150,14,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Gjwyekfxy Reah'),(151,14,'location_of_event','Vp licb'),(152,14,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(153,14,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(154,14,'other_notes___special_requests','Use SendBulkMails.com to run email campaigns from your own private dashboard. Cold emails are allowed and won\'t get you blocked :) Starter Package 50% off sale - 1Mil emails / mo @ $99 USD - Dedicated IP and Domain Included - Detailed statistical reports (delivery, bounce, clicks etc.) - Quick and easy setup with extended support at no extra cost. - Cancel anytime! Regards, www.SendBulkMails.com'),(155,15,'name','Steve Wilson| | Wilson'),(156,15,'email','sebastian.greenway@hotmail.com'),(157,15,'how_did_you_hear_about_us_','Google search'),(158,15,'message','Hi, We are wondering if you would be interested in our service, where we can provide you with a dofollow link from Amazon (DA 96) back to purpletulip.ca? The price is just $77 per link. If you\'d be interested in learning more, such as what DA is and how it can benefit your site, and to view an existing example, please visit us at: http://www.backlinkfaq.xyz Kind Regards, Sebastian'),(159,15,'date___time_of_event',''),(160,15,'number_of_guests_expected','Vkbnfd'),(161,15,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Lip K'),(162,15,'location_of_event','Xcw axubg A'),(163,15,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(164,15,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(165,15,'other_notes___special_requests','Hi, We are wondering if you would be interested in our service, where we can provide you with a dofollow link from Amazon (DA 96) back to purpletulip.ca? The price is just $77 per link. If you\'d be interested in learning more, please visit us at: http://www.backlinkfaq.xyz Kind Regards, Sebastian'),(166,16,'name','Emmett Dietz| | Dietz'),(167,16,'email','emmett@stardatagroup.com'),(168,16,'how_did_you_hear_about_us_','Google search'),(169,16,'message','It is with sad regret to inform you StarDataGroup.com is shutting down. Fire sale till the 7th of Feb. Any group of databases listed below is $49 or $149 for all 16 databases in this one time offer. You can purchase it at www.StarDataGroup.com and view samples. - LinkedIn Database 43,535,433 LinkedIn Records - USA B2B Companies Database 28,147,835 Companies - Forex Forex South Africa 113,550 Forex Traders Forex Australia 135,696 Forex Traders Forex UK 779,674 Forex Traders - UK Companies Database 521,303 Companies - German Databases German Companies Database: 2,209,191 Companies German Executives Database: 985,048 Executives - Australian Companies Database 1,806,596 Companies - UAE Companies Database 950,652 Companies - Affiliate Marketers Database 494,909 records - South African Databases B2B Companies Database: 1,462,227 Companies Directors Database: 758,834 Directors Healthcare Database: 376,599 Medical Professionals Wholesalers Database: 106,932 Wholesalers Real Estate Agent Database: 257,980 Estate Agents Forex South Africa: 113,550 Forex Traders Visit www.stardatagroup.com or contact us with any queries. Kind Regards, StarDataGroup.com'),(170,16,'date___time_of_event',''),(171,16,'number_of_guests_expected','L Lo Kk nxbf'),(172,16,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','L tkywqb'),(173,16,'location_of_event','Psv gqb'),(174,16,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(175,16,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(176,16,'other_notes___special_requests','It is with sad regret to inform you StarDataGroup.com is shutting down. Fire sale till the 7th of Feb. Any group of databases listed below is $49 or $149 for all 16 databases in this one time offer. You can purchase it at www.StarDataGroup.com and view samples. - LinkedIn Database 43,535,433 LinkedIn Records - USA B2B Companies Database 28,147,835 Companies - Forex Forex South Africa 113,550 Forex Traders Forex Australia 135,696 Forex Traders Forex UK 779,674 Forex Traders - UK Companies Database 521,303 Companies - German Databases German Companies Database: 2,209,191 Companies German Executives Database: 985,048 Executives - Australian Companies Database 1,806,596 Companies - UAE Companies Database 950,652 Companies - Affiliate Marketers Database 494,909 records - South African Databases B2B Companies Database: 1,462,227 Companies Directors Database: 758,834 Directors Healthcare Database: 376,599 Medical Professionals Wholesalers Database: 106,932 Wholesalers Real Estate Agent Database: 257,980 Estate Agents Forex South Africa: 113,550 Forex Traders Visit www.stardatagroup.com or contact us with any queries. Kind Regards, StarDataGroup.com'),(177,17,'name','Eric Jones| | Jones'),(178,17,'email','ericjonesonline@outlook.com'),(179,17,'how_did_you_hear_about_us_','Google search'),(180,17,'message','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithcustomer.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(181,17,'date___time_of_event',''),(182,17,'number_of_guests_expected','Ead O H gpw'),(183,17,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Hpnbxc C vz P'),(184,17,'location_of_event','Qopqz'),(185,17,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(186,17,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(187,17,'other_notes___special_requests','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE http://www.talkwithcustomer.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://www.talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://www.talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(188,18,'name','Ron| | Perimal'),(189,18,'email','rperimal@telus.net'),(190,18,'how_did_you_hear_about_us_','Instagram'),(191,18,'message','I\'m just enquiring about your menu. Do you cater to Indian weddings. I\'m looking for a caterer who can accommodate for 10 ppl with the full service at home in the middle of April. With the Covid-19 restrictions that\'s in place right now, what are the limitations that you can cater to. Can you please email me with the choices. The venue for now is in North Delta. Thanks, Ron'),(192,18,'date___time_of_event','24/04/2021 00:00'),(193,18,'number_of_guests_expected','10 until they lift the restriction'),(194,18,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Hindu wedding'),(195,18,'location_of_event','TBA'),(196,18,'event_type__select_all_that_apply_','Buffet / Family style - served'),(197,18,'cuisine_preference','Indian - Traditional| Indian - Progressive| Other - Custom'),(198,18,'other_notes___special_requests','Hindu wedding consists of Vegetarian food.'),(199,19,'name','Eric Jones| | Jones'),(200,19,'email','eric.jones.z.mail@gmail.com'),(201,19,'how_did_you_hear_about_us_','Google search'),(202,19,'message','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at purpletulip.ca. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(203,19,'date___time_of_event',''),(204,19,'number_of_guests_expected','Yanvsukak'),(205,19,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Jfhswvm Qavxzo'),(206,19,'location_of_event','Oo Vlxf Ekl'),(207,19,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(208,19,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(209,19,'other_notes___special_requests','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at purpletulip.ca. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(210,20,'name','Tod Poltpalingada| | Poltpalingada'),(211,20,'email','tod@sendbulkmails.com'),(212,20,'how_did_you_hear_about_us_','Google search'),(213,20,'message','Use SendBulkMails.com to run email campaigns from your own private dashboard. Cold emails are allowed and won\'t get you blocked :) - 1Mil emails / mo @ $99 USD - Dedicated IP and Domain Included - Detailed statistical reports (delivery, bounce, clicks etc.) - Quick and easy setup with extended support at no extra cost. - Cancel anytime! Regards, www.SendBulkMails.com'),(214,20,'date___time_of_event',''),(215,20,'number_of_guests_expected','Zl kfir jb'),(216,20,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Kj Y vzurl Csc'),(217,20,'location_of_event','Jbqzf xmonlq'),(218,20,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(219,20,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(220,20,'other_notes___special_requests','Use SendBulkMails.com to run email campaigns from your own private dashboard. Cold emails are allowed and won\'t get you blocked :) - 1Mil emails / mo @ $99 USD - Dedicated IP and Domain Included - Detailed statistical reports (delivery, bounce, clicks etc.) - Quick and easy setup with extended support at no extra cost. - Cancel anytime! Regards, www.SendBulkMails.com'),(221,21,'name','Elvis Poling| | Poling'),(222,21,'email','elvis@buy-rapid-tests.com'),(223,21,'how_did_you_hear_about_us_','Google search'),(224,21,'message','Get your own Covid-19 test results in 15 minutes on Buy-Rapid-Tests.com Simple 3 step process - anyone can do it. We have FDA Authorized Covid-19 Rapid Test Kits - Most orders ship standard within 48 hours. Order minimum is only - 1 Box Each Box includes: - 25 individual Covid-19 tests cassettes - 25 blood droppers - 1 bottle of buffer/testing solution Buy as many boxes as you would like. These tests are perfect for your organization, business, restuarant or group. Price is $36 per test (25 tests per box) and that includes shipping to any location for $50 We offer 10% wholesale price breaks for quantities of 5 boxes or more. Regards, Buy-Rapid-Tests.com'),(225,21,'date___time_of_event',''),(226,21,'number_of_guests_expected','Nkdyib Rtz'),(227,21,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Ggauybol'),(228,21,'location_of_event','Gxmqvwnh'),(229,21,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(230,21,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(231,21,'other_notes___special_requests','Get your own Covid-19 test results in 15 minutes on Buy-Rapid-Tests.com Simple 3 step process - anyone can do it. We have FDA Authorized Covid-19 Rapid Test Kits - Most orders ship standard within 48 hours. Order minimum is only - 1 Box Each Box includes: - 25 individual Covid-19 tests cassettes - 25 blood droppers - 1 bottle of buffer/testing solution Buy as many boxes as you would like. These tests are perfect for your organization, business, restuarant or group. Price is $36 per test (25 tests per box) and that includes shipping to any location for $50 We offer 10% wholesale price breaks for quantities of 5 boxes or more. Regards, Buy-Rapid-Tests.com'),(232,22,'name','Becky Johnson| | Johnson'),(233,22,'email','becky@stardatagroup.com'),(234,22,'how_did_you_hear_about_us_','Google search'),(235,22,'message','Do you need more clients? We have amazing databases starting at $9.99 until the end of the Month! Visit us at StarDataGroup.com'),(236,22,'date___time_of_event',''),(237,22,'number_of_guests_expected','Okkwtvv Fqm'),(238,22,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Nb Yv'),(239,22,'location_of_event','Rgdrfufhhthw'),(240,22,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(241,22,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(242,22,'other_notes___special_requests','Do you need more clients? We have amazing databases starting at $9.99 until the end of the Month! Visit us at StarDataGroup.com'),(243,23,'name','Harj| | Bindra'),(244,23,'email','hbindra93@gmail.com'),(245,23,'how_did_you_hear_about_us_','Word of mouth '),(246,23,'message','Hi, My brother is getting married on March 25th. Since we can’t have a reception right now, we wanted to host a dinner at home on March 26th with just immediate households of the bride and groom. The event would be for 15-20 people max.'),(247,23,'date___time_of_event','26/03/2021 18:00'),(248,23,'number_of_guests_expected','20'),(249,23,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Small reception dinner'),(250,23,'location_of_event','5831 McCallan Rd, Richmond, BC (private residence)'),(251,23,'event_type__select_all_that_apply_','Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(252,23,'cuisine_preference','Indian - Traditional| Indian - Progressive'),(253,23,'other_notes___special_requests',''),(254,24,'name','SendBulkMails.com| | SendBulkMails.com'),(255,24,'email','alberto@sendbulkmails.com'),(256,24,'how_did_you_hear_about_us_','Google search'),(257,24,'message','SendBulkMails.com allows you to reach out to clients via cold email marketing. - 1Mil emails starter package - Dedicated IP and Domain Included - Detailed statistical reports (delivery, bounce, clicks etc.) - Quick and easy setup with extended support at no extra cost. - Cancel anytime! SendBulkMails.com'),(258,24,'date___time_of_event',''),(259,24,'number_of_guests_expected','Zuncdvuaad cah'),(260,24,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Gse Ei'),(261,24,'location_of_event','D Nbrjlznzka'),(262,24,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(263,24,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(264,24,'other_notes___special_requests','SendBulkMails.com allows you to reach out to clients via cold email marketing. - 1Mil emails starter package - Dedicated IP and Domain Included - Detailed statistical reports (delivery, bounce, clicks etc.) - Quick and easy setup with extended support at no extra cost. - Cancel anytime! SendBulkMails.com'),(265,25,'name','Eric Jones| | Jones'),(266,25,'email','eric.jones.z.mail@gmail.com'),(267,25,'how_did_you_hear_about_us_','Google search'),(268,25,'message','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at purpletulip.ca. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(269,25,'date___time_of_event',''),(270,25,'number_of_guests_expected','Tgenfo Gz'),(271,25,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','B Ptzio'),(272,25,'location_of_event','Sco r Srjphdf'),(273,25,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(274,25,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(275,25,'other_notes___special_requests','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at purpletulip.ca. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(276,26,'name','Leonardo Hume| | Hume'),(277,26,'email','leonardo@sesforyou.com'),(278,26,'how_did_you_hear_about_us_','Google search'),(279,26,'message','Hi, I\'m always asked what is the quickest way to make money online, when you are just starting out? Well here\'s the definitive answer that question: ==&gt; https://sesforyou.com New Book Reveals How I Built A 7-Figure Online Business Using Nothing But Ethical Email Marketing To Drive Revenue, Sales and Commissions... ==&gt; https://sesforyou.com Regards, SesForYou.com'),(280,26,'date___time_of_event',''),(281,26,'number_of_guests_expected','Wpnibpnzdq'),(282,26,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Ktihh Ebvajh'),(283,26,'location_of_event','Uppwozlq'),(284,26,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(285,26,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(286,26,'other_notes___special_requests','Hi, I\'m always asked what is the quickest way to make money online, when you are just starting out? Well here\'s the definitive answer that question: ==&gt; https://sesforyou.com New Book Reveals How I Built A 7-Figure Online Business Using Nothing But Ethical Email Marketing To Drive Revenue, Sales and Commissions... ==&gt; https://sesforyou.com Regards, SesForYou.com'),(287,27,'name','Eric Jones| | Jones'),(288,27,'email','eric.jones.z.mail@gmail.com'),(289,27,'how_did_you_hear_about_us_','Google search'),(290,27,'message','My name’s Eric and I just found your site purpletulip.ca. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE http://talkwithcustomer.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(291,27,'date___time_of_event',''),(292,27,'number_of_guests_expected','Avr c'),(293,27,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Uy Ho Fm'),(294,27,'location_of_event','Ixaaghkjvc b'),(295,27,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(296,27,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(297,27,'other_notes___special_requests','My name’s Eric and I just found your site purpletulip.ca. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE http://talkwithcustomer.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(298,28,'name','Vim| | Khera'),(299,28,'email','vimolkhera@gmail.com'),(300,28,'how_did_you_hear_about_us_','Google search'),(301,28,'message','Looking to get a quote for event for 10 people. Want to get an order of steak with a side of veggies and potatoes.'),(302,28,'date___time_of_event','10/04/2021 13:00'),(303,28,'number_of_guests_expected','10'),(304,28,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Birthday'),(305,28,'location_of_event','Surrey - Newton'),(306,28,'event_type__select_all_that_apply_','Casual - drop off| Plated dinner'),(307,28,'cuisine_preference','West Coast'),(308,28,'other_notes___special_requests',''),(309,29,'name','Charmain Lepage| | Lepage'),(310,29,'email','charmain.lepage94@gmail.com'),(311,29,'how_did_you_hear_about_us_','Google search'),(312,29,'message','Buy generic and Brand Ciails online - Viarga, Levirta, Kamarga - Worldwide shipping, 100% quality! The best solution for men. Thousands of satisfied customers. Order now! ORDER NOW! https://pharmil.com/ I came across with purpletulip.ca and thought you may be interested in our services. Does your sexual efficiency bother you or your partner? Impotence is a bother that can be cured, Do not let it wreck your life. Order our new tablets towards Erectile Dysfunction and do not let any illness spoil your sexual well being. Order now and obtain a huge discount and free samples. Don\'t waste your time - your future is in your hands. GO TO SHOP https://pharmil.com/'),(313,29,'date___time_of_event',''),(314,29,'number_of_guests_expected','Fdu z Jlj'),(315,29,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Qzalbr'),(316,29,'location_of_event','Cvffn jr ygaxx'),(317,29,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(318,29,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(319,29,'other_notes___special_requests','Buy generic and Brand Ciails online - Viarga, Levirta, Kamarga - Worldwide shipping, 100% quality! The best solution for men. Thousands of satisfied customers. Order now! GO TO SHOP https://pharmil.com/ I came across with purpletulip.ca and thought you may be interested in our services. Does your sexual efficiency hassle you or your partner? Impotence is a bother that can be cured, Do not let it ruin your life. Order our new tablets against Erectile Dysfunction and don\'t let any illness spoil your sexual well being. Order now and receive an enormous discount and free samples. Don\'t waste your time - your future is in your hands. ORDER NOW! https://pharmil.com/'),(320,30,'name','Felica Henn| | Henn'),(321,30,'email','felica@bestlocaldata.com'),(322,30,'how_did_you_hear_about_us_','Google search'),(323,30,'message','Hello, BestLocalData.com has a special package you get any group of databases for $49 or $249 for all 16 databases and unlimited emails for a year(Domain, IP, Dashboard included). You can purchase it on BestLocalData.com and see samples if you are interested.'),(324,30,'date___time_of_event',''),(325,30,'number_of_guests_expected','Jfum cge'),(326,30,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Bmxhll n'),(327,30,'location_of_event','Cpefoarf v z'),(328,30,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(329,30,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(330,30,'other_notes___special_requests','Hello, BestLocalData.com has a special package you get any group of databases for $49 or $249 for all 16 databases and unlimited emails for a year(Domain, IP, Dashboard included). You can purchase it on BestLocalData.com and see samples if you are interested.'),(331,31,'name','Eric Jones| | Jones'),(332,31,'email','eric.jones.z.mail@gmail.com'),(333,31,'how_did_you_hear_about_us_','Google search'),(334,31,'message','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at purpletulip.ca. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(335,31,'date___time_of_event',''),(336,31,'number_of_guests_expected','Nihx Du Lkne G'),(337,31,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Wh vtqw r'),(338,31,'location_of_event','Yzfav bihojn'),(339,31,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(340,31,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(341,31,'other_notes___special_requests','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at purpletulip.ca. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(342,32,'name','Janeen Coffelt| | Coffelt'),(343,32,'email','janeen.coffelt42@googlemail.com'),(344,32,'how_did_you_hear_about_us_','Google search'),(345,32,'message','Hi! I came across with purpletulip.ca and thought you may be interested in our services. After 19 Years Of Making Diet Products, We’ve Finally Created The Best. Lose Weight Faster with the new 3 in 1 formula. Why are you waiting on the body of your dreams? - Worldwide shipping, 100% Satisfaction Guaranteed! Thousands of satisfied customers. Order now and obtain an enormous discount and free samples. Don\'t waste your time - Make the smart choice right now and discover your new body. GO TO SHOP https://pharmil.com/order-orlistat-online-en.html'),(346,32,'date___time_of_event',''),(347,32,'number_of_guests_expected','S P jyqq'),(348,32,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Muredm'),(349,32,'location_of_event','Lwktrubf'),(350,32,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(351,32,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(352,32,'other_notes___special_requests','Hi! I came across with purpletulip.ca and thought you may be interested in our services. After 19 Years Of Making Diet Products, We’ve Finally Created The Best. Lose Weight Faster with the new 3 in 1 formula. Why are you waiting on the body of your dreams? - Worldwide shipping, 100% Satisfaction Guaranteed! Thousands of satisfied customers. Order now and obtain a huge discount and free samples. Don\'t waste your time - Make the smart choice right now and discover your new body. GO TO SHOP https://pharmil.com/order-orlistat-online-en.html'),(353,33,'name','Natisha Centeno| | Centeno'),(354,33,'email','natisha.centeno@hotmail.com'),(355,33,'how_did_you_hear_about_us_','Google search'),(356,33,'message','Your All In One Solution For Creating All The Content You\'ll Ever Need. Proprietary AI Turns YouTube Videos Into Traffic Getting Articles At The Press Of A Button! We’ve Been Getting Free Autopilot Traffic From Google Without SEO Experience For Over 2 Years By Converting Others YouTube Videos Into Articles… https://warriorplus.com/o2/a/gmvfs/0'),(357,33,'date___time_of_event',''),(358,33,'number_of_guests_expected','Lhgnk'),(359,33,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','C M X l F'),(360,33,'location_of_event','Mtlpomqb g'),(361,33,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(362,33,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(363,33,'other_notes___special_requests','Your All In One Solution For Creating All The Content You\'ll Ever Need. Proprietary AI Turns YouTube Videos Into Traffic Getting Articles At The Press Of A Button! We’ve Been Getting Free Autopilot Traffic From Google Without SEO Experience For Over 2 Years By Converting Others YouTube Videos Into Articles… https://warriorplus.com/o2/a/gmvfs/0'),(364,34,'name','Eugenia Mansfield| | Mansfield'),(365,34,'email','eugenia.mansfield@hotmail.com'),(366,34,'how_did_you_hear_about_us_','Google search'),(367,34,'message','Need extra income? A fully hosted, done for you content + monetisation and a stunning design web based software that creates a fully automated done for you cryptocurrency affiliate site, Visit us: https://warriorplus.com/o2/a/f5s4y/0'),(368,34,'date___time_of_event',''),(369,34,'number_of_guests_expected','Rtqkstgjztubl'),(370,34,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Hxizkribj'),(371,34,'location_of_event','Jl Ryhkvl'),(372,34,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(373,34,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(374,34,'other_notes___special_requests','Need extra income? A fully hosted, done for you content + monetisation and a stunning design web based software that creates a fully automated done for you cryptocurrency affiliate site, Visit us: https://warriorplus.com/o2/a/f5s4y/0'),(375,35,'name','Eric Jones| | Jones'),(376,35,'email','eric.jones.z.mail@gmail.com'),(377,35,'how_did_you_hear_about_us_','Google search'),(378,35,'message','Cool website! My name’s Eric, and I just found your site - purpletulip.ca - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across purpletulip.ca, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(379,35,'date___time_of_event',''),(380,35,'number_of_guests_expected','Dzgytn a'),(381,35,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Bjq zprszj I'),(382,35,'location_of_event','Vte j yiw'),(383,35,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(384,35,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(385,35,'other_notes___special_requests','Cool website! My name’s Eric, and I just found your site - purpletulip.ca - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across purpletulip.ca, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(386,36,'name','Mason Windham| | Windham'),(387,36,'email','mason.windham@gmail.com'),(388,36,'how_did_you_hear_about_us_','Google search'),(389,36,'message','Need extra income? A fully hosted, done for you content + monetisation and a stunning design web based software that creates a fully automated done for you cryptocurrency affiliate site, Visit us: https://warriorplus.com/o2/a/f5s4y/0'),(390,36,'date___time_of_event',''),(391,36,'number_of_guests_expected','Kk ww tt'),(392,36,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Hnzqwtnftblak'),(393,36,'location_of_event','Hldbar'),(394,36,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(395,36,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(396,36,'other_notes___special_requests','Need extra income? A fully hosted, done for you content + monetisation and a stunning design web based software that creates a fully automated done for you cryptocurrency affiliate site, Visit us: https://warriorplus.com/o2/a/f5s4y/0'),(397,37,'name','Reagan Coaldrake| | Coaldrake'),(398,37,'email','coaldrake.reagan@googlemail.com'),(399,37,'how_did_you_hear_about_us_','Google search'),(400,37,'message','What is Link Bypass? Link Bypass allows you to easily bypass any sales page and generate a new buy link with no coding required and just a few clicks of your mouse. How does Link Bypass work? Step #1 - Choose any sales page you want to bypass and link bypass with automatically create a custom payment link Step #2 - Add your new link to any landing page, sales page, or email with a few clicks of your mouse (Use your favorite page-building software or simply ‘copy and paste’) Step #3 - Boost conversions and make more money on affiliate promotions Visit us: https://warriorplus.com/o2/a/q8rmt/0'),(401,37,'date___time_of_event',''),(402,37,'number_of_guests_expected','F Yqq ck Gyj'),(403,37,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Dm Kqwmo'),(404,37,'location_of_event','Fasxdg tx ws'),(405,37,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(406,37,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(407,37,'other_notes___special_requests','What is Link Bypass? Link Bypass allows you to easily bypass any sales page and generate a new buy link with no coding required and just a few clicks of your mouse. How does Link Bypass work? Step #1 - Choose any sales page you want to bypass and link bypass with automatically create a custom payment link Step #2 - Add your new link to any landing page, sales page, or email with a few clicks of your mouse (Use your favorite page-building software or simply ‘copy and paste’) Step #3 - Boost conversions and make more money on affiliate promotions Visit us: https://warriorplus.com/o2/a/q8rmt/0'),(408,38,'name','Eric Jones| | Jones'),(409,38,'email','eric.jones.z.mail@gmail.com'),(410,38,'how_did_you_hear_about_us_','Google search'),(411,38,'message','My name’s Eric and I just found your site purpletulip.ca. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE http://talkwithcustomer.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(412,38,'date___time_of_event',''),(413,38,'number_of_guests_expected','Sw fm p'),(414,38,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','H g ubi'),(415,38,'location_of_event','Lyytz'),(416,38,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(417,38,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(418,38,'other_notes___special_requests','My name’s Eric and I just found your site purpletulip.ca. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE http://talkwithcustomer.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(419,39,'name','Eric Jones| | Jones'),(420,39,'email','eric.jones.z.mail@gmail.com'),(421,39,'how_did_you_hear_about_us_','Google search'),(422,39,'message','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(423,39,'date___time_of_event',''),(424,39,'number_of_guests_expected','Wzkbsizt Fsyq'),(425,39,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Qa Oi g'),(426,39,'location_of_event','E G Kmwt Mcbb'),(427,39,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(428,39,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(429,39,'other_notes___special_requests','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(430,40,'name','Alisa Nina| | Nina'),(431,40,'email','alisa.nina@gmail.com'),(432,40,'how_did_you_hear_about_us_','Google search'),(433,40,'message','Hey, It was nice speaking to you the other day, this is the service I was telling you about that helped us boost our ROI almost 2000% Its a company called Lifemail.studio sorry it took so long to get back to you. They allow you to send any email doesn\'t matter what. We dealt with a guy named Michael, he was friendly and got us setup really quickly. Regards, Alisa'),(434,40,'date___time_of_event',''),(435,40,'number_of_guests_expected','Tbs qsmy'),(436,40,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Rlli wogyr H'),(437,40,'location_of_event','Dwvpbr'),(438,40,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(439,40,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(440,40,'other_notes___special_requests','Hey, It was nice speaking to you the other day, this is the service I was telling you about that helped us boost our ROI almost 2000% Its a company called Lifemail.studio sorry it took so long to get back to you. They allow you to send any email doesn\'t matter what. We dealt with a guy named Michael, he was friendly and got us setup really quickly. Regards, Alisa'),(441,41,'name','Charline Roe| | Roe'),(442,41,'email','charline.roe@gmail.com'),(443,41,'how_did_you_hear_about_us_','Google search'),(444,41,'message','For Anyone Looking To Start, Scale and Grow A Digital Business In 2021 New Book Reveals How I Built A 7-Figure Online Business Using Nothing But Ethical Email Marketing To Drive Revenue, Sales and Commissions... $4.99 to access the secret email system. Sesforyou.com!'),(445,41,'date___time_of_event',''),(446,41,'number_of_guests_expected','Grmda Btq'),(447,41,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','A s Awn'),(448,41,'location_of_event','E eh qu xmm'),(449,41,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(450,41,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(451,41,'other_notes___special_requests','For Anyone Looking To Start, Scale and Grow A Digital Business In 2021 New Book Reveals How I Built A 7-Figure Online Business Using Nothing But Ethical Email Marketing To Drive Revenue, Sales and Commissions... $4.99 to access the secret email system. Sesforyou.com!'),(452,42,'name','Aneeta| | Kalsi'),(453,42,'email','aneetakalsi@gmail.com'),(454,42,'how_did_you_hear_about_us_','Instagram'),(455,42,'message','I am looking for something for my bridal shower. Looking for buffet/appetizers that would be free-flowing throughout the even'),(456,42,'date___time_of_event','13/11/2021 04:00'),(457,42,'number_of_guests_expected','40'),(458,42,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Bridal Shower'),(459,42,'location_of_event','Creasent Beach in South Surrey'),(460,42,'event_type__select_all_that_apply_','Buffet / Family style drop off| Cocktail/Appies'),(461,42,'cuisine_preference','West Coast| Indian - Traditional| Indian - Progressive'),(462,42,'other_notes___special_requests',''),(463,43,'name','Eric Jones| | Jones'),(464,43,'email','eric.jones.z.mail@gmail.com'),(465,43,'how_did_you_hear_about_us_','Google search'),(466,43,'message','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(467,43,'date___time_of_event',''),(468,43,'number_of_guests_expected','Guerl'),(469,43,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Esjw Mpzd mrap'),(470,43,'location_of_event','Cuhks'),(471,43,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(472,43,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(473,43,'other_notes___special_requests','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(474,44,'name','Raymundo Doolan| | Doolan'),(475,44,'email','raymundo@lifemailnow.com'),(476,44,'how_did_you_hear_about_us_','Google search'),(477,44,'message','Hello, Send unlimited emails to unlimited lists with one click and no monthly fees! $99 once off! LifeMailNow.com'),(478,44,'date___time_of_event',''),(479,44,'number_of_guests_expected','W D Sx d'),(480,44,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Ivlt y'),(481,44,'location_of_event','J cefckrotb t'),(482,44,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(483,44,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(484,44,'other_notes___special_requests','Hello, Send unlimited emails to unlimited lists with one click and no monthly fees! $99 once off! LifeMailNow.com'),(485,45,'name','Linda Miller| | Miller'),(486,45,'email','lindamillerleads@gmail.com'),(487,45,'how_did_you_hear_about_us_','Google search'),(488,45,'message','Hi purpletulip.ca Owner, Do you want to know the Secrets To Mastering Internet Lead Conversion? I spent the last 10+ years generating, calling and closing Internet leads. I will be sharing my decade long conversion code for you to copy during this new, free webinar! During the webinar, I will show you: Every business needs to capture more leads, create more appointments, and close more deals. If you commit to mastering the content in this session, you will earn more money immediately– not in six months or a year, but literally as soon as you put your new knowledge to work. I have used this method on 1,000\'s of Internet leads of all price points. If you want Internet leads, I have the key to CONVERTING them. Hope you can make it... https://TalkWithWebTraffic.com/Webinar If getting more Hot Phone Leads is a part of your business plan (and why wouldn\'t it be?), I\'ve got great news for you. 1. 12 ways to generate seller leads 2. How to get seller leads on the phone 3. What to say on the phone so you get instant sales 4. The Key to SMS Marketing 5 Never Cold Call Again 6. Better leads = Faster conversions 7. The four keys to inside sales success 8. The 10 steps to a perfect sales call with an Internet lead More than 7,000 people have already registered. The last time I did a webinar with Top Producers, hundreds of people got locked out and could only watch the replay. Get your spot now and tune in early! ==&gt; Save my spot https://TalkWithWebTraffic.com/Webinar We\'ve become obsessed with making sure our clients are converting the leads we generate for them. How much are you getting back in commissions compared to how much are you spending on advertising? But what is even better than a great ROI is a quick ROI. During this live webinar I will show you how we can help you generate higher quality leads that are easier to convert, fast. ==&gt; Register at https://TalkWithWebTraffic.com/Webinar Your #1 Fan, Linda Miller Be there or be square. If you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=purpletulip.ca'),(489,45,'date___time_of_event',''),(490,45,'number_of_guests_expected','Pbwmopyas qz'),(491,45,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Ebjxh Gt o K'),(492,45,'location_of_event','Wybk Wr'),(493,45,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(494,45,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(495,45,'other_notes___special_requests','Hi purpletulip.ca Owner, Do you want to know the Secrets To Mastering Internet Lead Conversion? I spent the last 10+ years generating, calling and closing Internet leads. I will be sharing my decade long conversion code for you to copy during this new, free webinar! During the webinar, I will show you: Every business needs to capture more leads, create more appointments, and close more deals. If you commit to mastering the content in this session, you will earn more money immediately– not in six months or a year, but literally as soon as you put your new knowledge to work. I have used this method on 1,000\'s of Internet leads of all price points. If you want Internet leads, I have the key to CONVERTING them. Hope you can make it... https://TalkWithWebTraffic.com/Webinar If getting more Hot Phone Leads is a part of your business plan (and why wouldn\'t it be?), I\'ve got great news for you. 1. 12 ways to generate seller leads 2. How to get seller leads on the phone 3. What to say on the phone so you get instant sales 4. The Key to SMS Marketing 5 Never Cold Call Again 6. Better leads = Faster conversions 7. The four keys to inside sales success 8. The 10 steps to a perfect sales call with an Internet lead More than 7,000 people have already registered. The last time I did a webinar with Top Producers, hundreds of people got locked out and could only watch the replay. Get your spot now and tune in early! ==&gt; Save my spot https://TalkWithWebTraffic.com/Webinar We\'ve become obsessed with making sure our clients are converting the leads we generate for them. How much are you getting back in commissions compared to how much are you spending on advertising? But what is even better than a great ROI is a quick ROI. During this live webinar I will show you how we can help you generate higher quality leads that are easier to convert, fast. ==&gt; Register at https://TalkWithWebTraffic.com/Webinar Your #1 Fan, Linda Miller Be there or be square. If you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=purpletulip.ca'),(496,46,'name','Eric Jones| | Jones'),(497,46,'email','eric.jones.z.mail@gmail.com'),(498,46,'how_did_you_hear_about_us_','Google search'),(499,46,'message','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(500,46,'date___time_of_event',''),(501,46,'number_of_guests_expected','Cx kte P'),(502,46,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Unxykhrnxljx'),(503,46,'location_of_event','Eeppko'),(504,46,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(505,46,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(506,46,'other_notes___special_requests','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(507,47,'name','Shanon Soukup| | Soukup'),(508,47,'email','shanon@bestlocaldata.com'),(509,47,'how_did_you_hear_about_us_','Google search'),(510,47,'message','Do you need clients? We compiled some of the world\'s top databases for you at ridiculous low prices. $49 for any of our databases or $99 for all 16 databases! Visit BestLocalData.com Regards, Shanon'),(511,47,'date___time_of_event',''),(512,47,'number_of_guests_expected','Ixoqqeqo wj'),(513,47,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','A Nswrhmjbv'),(514,47,'location_of_event','Uj S cuqocrlnw'),(515,47,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(516,47,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(517,47,'other_notes___special_requests','Do you need clients? We compiled some of the world\'s top databases for you at ridiculous low prices. $49 for any of our databases or $99 for all 16 databases! Visit BestLocalData.com Regards, Shanon'),(518,48,'name','Beatrice Paige| | Paige'),(519,48,'email','w.or.dp.r.e.s.s4.55485+libertinagen@gmail.com'),(520,48,'how_did_you_hear_about_us_','Google search'),(521,48,'message','Hi, Are you presently operating Wordpress/Woocommerce or perhaps will you project to utilise it at some point ? We provide around 2500 premium plugins along with themes to download : http://shortbg.buzz/fwzHI Thank You, Beatrice'),(522,48,'date___time_of_event',''),(523,48,'number_of_guests_expected','T Mljvgbf'),(524,48,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Smz cfuva'),(525,48,'location_of_event','Fyl cbzeu'),(526,48,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(527,48,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(528,48,'other_notes___special_requests','Hello, Are you presently utilizing Wordpress/Woocommerce or maybe might you intend to work with it sooner or later ? We currently provide over 2500 premium plugins and additionally themes to download : http://shortbg.buzz/fwzHI Thank You, Beatrice'),(529,49,'name','Paven| | Sandhar'),(530,49,'email','sandhar_p@sd36.bc.ca'),(531,49,'how_did_you_hear_about_us_','Instagram'),(532,49,'message','Hi we want to do a intimate next day dinner with Indian traditional/progressive dishes as well as a few western dishes. The amount of people may change with restrictions and I’m not sure if you do plated right now so that’s why I clicked buffets style just in case.'),(533,49,'date___time_of_event','13/06/2021 02:30'),(534,49,'number_of_guests_expected','10 (whatever is allowed at the time)'),(535,49,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Intimate next day dinner'),(536,49,'location_of_event','Surrey, B.C.'),(537,49,'event_type__select_all_that_apply_','Plated dinner'),(538,49,'cuisine_preference','Global| Indian - Traditional| Indian - Progressive'),(539,49,'other_notes___special_requests','Cute finger foods in shit cups and uniquely curated!'),(540,50,'name','Kathryn Coons| | Coons'),(541,50,'email','kathryn@bestlocaldata.com'),(542,50,'how_did_you_hear_about_us_','Google search'),(543,50,'message','Hey! BestLocalData has an amazing special. 16 databases for $99. LinkedIn(43million records) USA B2B (28 million companies), Australia, South Africa, UK, Germany and all of that included. Instant delivery! https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7S34LZQSKKQHG Or check out more on our website! Regards, Kathryn'),(544,50,'date___time_of_event',''),(545,50,'number_of_guests_expected','Riukc fp No Z'),(546,50,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Jsh znc'),(547,50,'location_of_event','Daymhejnvk'),(548,50,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(549,50,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(550,50,'other_notes___special_requests','Hey! BestLocalData has an amazing special. 16 databases for $99. LinkedIn(43million records) USA B2B (28 million companies), Australia, South Africa, UK, Germany and all of that included. Instant delivery! https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7S34LZQSKKQHG Or check out more on our website! Regards, Kathryn'),(551,51,'name','Sukhi| | Sandhu'),(552,51,'email','sukh1_sandhu@hotmail.com'),(553,51,'how_did_you_hear_about_us_','Instagram'),(554,51,'message','Hello, I am wondering if you would be able to cater/pack individual appetizers/canapés for a drive through bridal shower event? If so, I’m looking for something Indian as well as a sandwich of some sort? Something that will last well throughout the day. Could a cooking station be possible at a drive through event?'),(555,51,'date___time_of_event','30/05/2021 00:00'),(556,51,'number_of_guests_expected','40'),(557,51,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Bridal shower'),(558,51,'location_of_event','House'),(559,51,'event_type__select_all_that_apply_','Casual - drop off| Live cooking stations'),(560,51,'cuisine_preference','West Coast| Indian - Traditional| Indian - Progressive'),(561,51,'other_notes___special_requests','No nuts'),(562,52,'name','Dann Prewitt| | Prewitt'),(563,52,'email','dann.prewitt@gmail.com'),(564,52,'how_did_you_hear_about_us_','Google search'),(565,52,'message','Dear website owner, no worries, I\'m not selling anything :) I\'m working on a site with a similar topic, so I scanned purpletulip.ca also (to analyze competition) Unfortunately, it was offline for some time. Moreover, I’ve just noticed that it’s behind 62% of other sites in the same niche... So it\'s a good time to think about Please ping me if you have any questions or take a look at our free tool https://competitor-research.com Cheers, Dann Prewitt Senior SEO Specialist CompetitorResearch Inc. --- Opt-out: https://competitor-research.com/opt-out.php?domain=purpletulip.ca Report spam: https://competitor-research.com/spam.php?domain=purpletulip.ca'),(566,52,'date___time_of_event',''),(567,52,'number_of_guests_expected','Rwqfqjqlxcba'),(568,52,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Odkfrfiusi'),(569,52,'location_of_event','Ryhcpokp'),(570,52,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(571,52,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(572,52,'other_notes___special_requests','Dear website owner, no worries, I\'m not selling anything :) I\'m working on a website with a similar topic, so I scanned purpletulip.ca also (to analyze competition) Unfortunately, it was offline for some time. Moreover, I’ve just noticed that it’s behind 62% of other sites in the same niche... So it\'s a good time to think about Please ping me if you have any questions or take a look at our free tool https://competitor-research.com Cheers, Dann Prewitt Senior SEO Specialist CompetitorResearch Inc. --- Opt-out: https://competitor-research.com/opt-out.php?domain=purpletulip.ca Report spam: https://competitor-research.com/spam.php?domain=purpletulip.ca'),(573,53,'name','Sean Buntine| | Buntine'),(574,53,'email','sean@sendbulkmails.com'),(575,53,'how_did_you_hear_about_us_','Google search'),(576,53,'message','Hello from SendBulkMails.com, We have a special limited offer for you to send unlimited emails. We allow non-permission based emails and you won\'t ever get blocked. We also buy your domain for you and give you a clean IP and setup your DNS records. Check us out on SendBulkMails.com'),(577,53,'date___time_of_event',''),(578,53,'number_of_guests_expected','Jzavcgozqe'),(579,53,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Afmcicegmbp'),(580,53,'location_of_event','Gllaju Gw'),(581,53,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(582,53,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(583,53,'other_notes___special_requests','Hello from SendBulkMails.com, We have a special limited offer for you to send unlimited emails. We allow non-permission based emails and you won\'t ever get blocked. We also buy your domain for you and give you a clean IP and setup your DNS records. Check us out on SendBulkMails.com'),(584,54,'name','Eula Labelle| | Labelle'),(585,54,'email','eula@bestlocaldata.com'),(586,54,'how_did_you_hear_about_us_','Google search'),(587,54,'message','Hello from BestLocalData.com Due to the pandemic BestLocalData.com is shutting down on the 14th of May. We have more than a 100 million records of Key Executives all over the world. We hope that this Data will serve other companies to succeed in their marketing efforts. We have reduced all the prices to next to nothing on our website BestLocalData.com We wish you the best in your future endeavours.'),(588,54,'date___time_of_event',''),(589,54,'number_of_guests_expected','Uclhh nlbtls F'),(590,54,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Y a vnh'),(591,54,'location_of_event','X zrpj I'),(592,54,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(593,54,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(594,54,'other_notes___special_requests','Hello from BestLocalData.com Due to the pandemic BestLocalData.com is shutting down on the 14th of May. We have more than a 100 million records of Key Executives all over the world. We hope that this Data will serve other companies to succeed in their marketing efforts. We have reduced all the prices to next to nothing on our website BestLocalData.com We wish you the best in your future endeavours.'),(595,55,'name','Eric Jones| | Jones'),(596,55,'email','eric.jones.z.mail@gmail.com'),(597,55,'how_did_you_hear_about_us_','Google search'),(598,55,'message','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(599,55,'date___time_of_event',''),(600,55,'number_of_guests_expected','Nznh E'),(601,55,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','A ja'),(602,55,'location_of_event','Ujpjs guev'),(603,55,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(604,55,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(605,55,'other_notes___special_requests','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(606,56,'name','Bernadine Neale| | Neale'),(607,56,'email','bernadine@fbcourses.net'),(608,56,'how_did_you_hear_about_us_','Google search'),(609,56,'message','Are you looking for the best way to market your business? FbCourses.net has the answer.. Not sure where to start, or what to do? Why not learn from the best. All of the best. We are offering at never before seen prices all of the top courses for one insanely low price. If you have been thinking of how to generate more leads, website traffic or sales today is the day. All courses are available in full with immediate download on FbCourses.net Not sure which one you like, for the next 24 hours we are offering the entire suite of courses for the lowest amount you could possible imagine. Check us out : FbCourses.net You could be driving new income or starting the new side hustle today!'),(610,56,'date___time_of_event',''),(611,56,'number_of_guests_expected','Wcg sujybz'),(612,56,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Hxb p gb Zprg'),(613,56,'location_of_event','B mj ii mb'),(614,56,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(615,56,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(616,56,'other_notes___special_requests','Are you looking for the best way to market your business? FbCourses.net has the answer.. Not sure where to start, or what to do? Why not learn from the best. All of the best. We are offering at never before seen prices all of the top courses for one insanely low price. If you have been thinking of how to generate more leads, website traffic or sales today is the day. All courses are available in full with immediate download on FbCourses.net Not sure which one you like, for the next 24 hours we are offering the entire suite of courses for the lowest amount you could possible imagine. Check us out : FbCourses.net You could be driving new income or starting the new side hustle today!'),(617,57,'name','Eric Jones| | Jones'),(618,57,'email','eric.jones.z.mail@gmail.com'),(619,57,'how_did_you_hear_about_us_','Google search'),(620,57,'message','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(621,57,'date___time_of_event',''),(622,57,'number_of_guests_expected','Ayss'),(623,57,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Th Ay'),(624,57,'location_of_event','Do Syzbmymai T'),(625,57,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(626,57,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(627,57,'other_notes___special_requests','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(628,58,'name','Micheline Lain| | Lain'),(629,58,'email','micheline@bestlocaldata.com'),(630,58,'how_did_you_hear_about_us_','Google search'),(631,58,'message','Hello, It is with sad regret to inform you that BestLocalData.com is shutting down. We have made all our databases for sale for a once-off price. Visit our website to get the best bargain of your life. BestLocalData.com Regards, Micheline'),(632,58,'date___time_of_event',''),(633,58,'number_of_guests_expected','Emybqlolqumb'),(634,58,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Aexpvy'),(635,58,'location_of_event','Ahw Xw'),(636,58,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(637,58,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(638,58,'other_notes___special_requests','Hello, It is with sad regret to inform you that BestLocalData.com is shutting down. We have made all our databases for sale for a once-off price. Visit our website to get the best bargain of your life. BestLocalData.com Regards, Micheline'),(639,59,'name','Eric Jones| | Jones'),(640,59,'email','eric.jones.z.mail@gmail.com'),(641,59,'how_did_you_hear_about_us_','Google search'),(642,59,'message','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(643,59,'date___time_of_event',''),(644,59,'number_of_guests_expected','G Mudpn'),(645,59,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Jzfcigkrz'),(646,59,'location_of_event','Jro bv z'),(647,59,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(648,59,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(649,59,'other_notes___special_requests','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(650,60,'name','Efren Barger| | Barger'),(651,60,'email','efren@order-fulfillment.net'),(652,60,'how_did_you_hear_about_us_','Google search'),(653,60,'message','Hello from order-fulfillment.net, Doing your own product shipping or order fulfillment in house? Tired of it? Visit us on www.order-fulfillment.net We can store, inventory, and manage your drop shipping / order fulfillment for you. Based in the US for almost 2 decades - we ship around the world and will save you time and money. Who would be the best contact at your company to discuss? Here are some of the items we ship for clients: -Books, training manuals, guides -New member welcomes boxes and gifts -Product samples -Marketing materials -Medical program test kits -Follow up gifts to clients, leads, and prospects Thank you! Fulfillment Warehouse https://order-fulfillment.net'),(654,60,'date___time_of_event',''),(655,60,'number_of_guests_expected','Tvuwrkpe'),(656,60,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Tdyio Rbh'),(657,60,'location_of_event','Qnzk gmolyqnc'),(658,60,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(659,60,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(660,60,'other_notes___special_requests','Hello from order-fulfillment.net, Doing your own product shipping or order fulfillment in house? Tired of it? Visit us on www.order-fulfillment.net We can store, inventory, and manage your drop shipping / order fulfillment for you. Based in the US for almost 2 decades - we ship around the world and will save you time and money. Who would be the best contact at your company to discuss? Here are some of the items we ship for clients: -Books, training manuals, guides -New member welcomes boxes and gifts -Product samples -Marketing materials -Medical program test kits -Follow up gifts to clients, leads, and prospects Thank you! Fulfillment Warehouse https://order-fulfillment.net'),(661,61,'name','Melanie Darosa| | Darosa'),(662,61,'email','melanie.darosa@gmail.com'),(663,61,'how_did_you_hear_about_us_','Google search'),(664,61,'message','Hi, We’re reaching out to ask if you’d be interested in featuring a guest post on your website. We believe we can add value to your audience on a few related topics that would resonate with your readers. If our offer is of interest to you, please complete the form here: https://backlinkpro.club/add-your-site Kind Regards, Melanie'),(665,61,'date___time_of_event',''),(666,61,'number_of_guests_expected','Idheexxq'),(667,61,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Gmpfl Jwmvvy'),(668,61,'location_of_event','Xejr Ggq mvs'),(669,61,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(670,61,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(671,61,'other_notes___special_requests','Hi, We’re reaching out to ask if you’d be interested in featuring a guest post on your website. We believe we can add value to your audience on a few related topics that would resonate with your readers. If our offer is of interest to you, please complete the form here: https://backlinkpro.club/add-your-site Kind Regards, Melanie'),(672,62,'name','Andre Hartmann| | Hartmann'),(673,62,'email','andre@bestlocaldata.com'),(674,62,'how_did_you_hear_about_us_','Google search'),(675,62,'message','Hello, It is with sad regret to inform you that BestLocalData.com is shutting down. We have made all our databases for sale for a once-off price. Visit our website to get the best bargain of your life. BestLocalData.com Regards, Andre'),(676,62,'date___time_of_event',''),(677,62,'number_of_guests_expected','Mv d e zf Iev'),(678,62,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Wewfnuw nsg'),(679,62,'location_of_event','Z vziezpw B'),(680,62,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(681,62,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(682,62,'other_notes___special_requests','Hello, It is with sad regret to inform you that BestLocalData.com is shutting down. We have made all our databases for sale for a once-off price. Visit our website to get the best bargain of your life. BestLocalData.com Regards, Andre'),(683,63,'name','anita| | dhiman'),(684,63,'email','anita_dhiman@shaw.ca'),(685,63,'how_did_you_hear_about_us_','Referral'),(686,63,'message','5:30pm event'),(687,63,'date___time_of_event','03/07/2021 00:00'),(688,63,'number_of_guests_expected','50'),(689,63,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Day after wedding dinner'),(690,63,'location_of_event','Vancouver'),(691,63,'event_type__select_all_that_apply_','Live cooking stations'),(692,63,'cuisine_preference','Indian - Progressive'),(693,63,'other_notes___special_requests',''),(694,64,'name','anita| | dhiman'),(695,64,'email','anita_dhiman@shaw.ca'),(696,64,'how_did_you_hear_about_us_','Referral'),(697,64,'message','2pm'),(698,64,'date___time_of_event','26/06/2021 00:00'),(699,64,'number_of_guests_expected','10'),(700,64,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Shower'),(701,64,'location_of_event','Vancouver'),(702,64,'event_type__select_all_that_apply_','Casual - drop off'),(703,64,'cuisine_preference','West Coast'),(704,64,'other_notes___special_requests',''),(705,65,'name','Edith Jiminez| | Jiminez'),(706,65,'email','jiminez.edith@msn.com'),(707,65,'how_did_you_hear_about_us_','Google search'),(708,65,'message','Hello We offer 12000+ Fresh, Clean, Safe Themes/Plugins/Scripts for Wordpress/WooCommerce/Joomla/Prestashop/Opencart/Magento We have 8500 active and paid members already. 1 Month price is just $9.90 for now. Please check it https://yukapo.com/?utm_source=wsc&amp;utm_medium=contact&amp;utm_campaign=EN YUKAPO.COM'),(709,65,'date___time_of_event',''),(710,65,'number_of_guests_expected','Cuwevz Zenp n'),(711,65,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Fj Nxb Djwmd'),(712,65,'location_of_event','Ctvlw Jtsg'),(713,65,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(714,65,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(715,65,'other_notes___special_requests','Hello We offer 12000+ Fresh, Clean, Safe Themes/Plugins/Scripts for Wordpress/WooCommerce/Joomla/Prestashop/Opencart/Magento We have 8500 active and paid members already. 1 Month price is just $9.90 for now. Please check it https://yukapo.com/?utm_source=wsc&amp;utm_medium=contact&amp;utm_campaign=EN YUKAPO.COM'),(716,66,'name','Dana Farnham| | Farnham'),(717,66,'email','dana.farnham@hotmail.com'),(718,66,'how_did_you_hear_about_us_','Google search'),(719,66,'message','Hello We offer 12000+ Fresh, Clean, Safe Themes/Plugins/Scripts for Wordpress/WooCommerce/Joomla/Prestashop/Opencart/Magento We have 8500 active and paid members already. 1 Month price is just $9.90 for now. Please check it https://yukapo.com/?utm_source=wsc&amp;utm_medium=contact&amp;utm_campaign=EN YUKAPO.COM'),(720,66,'date___time_of_event',''),(721,66,'number_of_guests_expected','Qwxfb Hxzxnh'),(722,66,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Wx Ofrxaqvez'),(723,66,'location_of_event','G Dhr Rshjw'),(724,66,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(725,66,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(726,66,'other_notes___special_requests','Hello We offer 12000+ Fresh, Clean, Safe Themes/Plugins/Scripts for Wordpress/WooCommerce/Joomla/Prestashop/Opencart/Magento We have 8500 active and paid members already. 1 Month price is just $9.90 for now. Please check it https://yukapo.com/?utm_source=wsc&amp;utm_medium=contact&amp;utm_campaign=EN YUKAPO.COM'),(727,67,'name','Wade Liu| | Liu'),(728,67,'email','wade.liu@chinaregistry.com.cn'),(729,67,'how_did_you_hear_about_us_','Google search'),(730,67,'message','(It\'s very urgent, therefore we kindly ask you to forward this email to your CEO. Thanks) Dear CEO, This email is from China domain name registration center, which mainly deal with the domain name registration in China. On 08-06-2021, we received an application from Hongwei Ltd requested \"purpletulip\" as their internet keyword and China (CN) domain names (purpletulip.cn, purpletulip.com.cn, purpletulip.net.cn, purpletulip.org.cn). But after checking it, we find this name conflict with your company name or trademark. In order to deal with this matter better, it\'s necessary to send this message to your company and confirm whether this company is your distributor or business partner in China? Best Regards Wade Liu | Service &amp; Operations Manager China Registry (Head Office) www.chinaregistry.com.cn Tel: +86-2161918696 Fax: +86-2161918697 Mob: +86-13816428671 6012, Xingdi Building, No. 1698 Yishan Road, Shanghai 201103, China'),(731,67,'date___time_of_event',''),(732,67,'number_of_guests_expected','I vu xsn Oups'),(733,67,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Gznvnryuie'),(734,67,'location_of_event','Hv kgj Psup'),(735,67,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(736,67,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(737,67,'other_notes___special_requests','(It\'s very urgent, therefore we kindly ask you to forward this email to your CEO. Thanks) Dear CEO, This email is from China domain name registration center, which mainly deal with the domain name registration in China. On 08-06-2021, we received an application from Hongwei Ltd requested \"purpletulip\" as their internet keyword and China (CN) domain names (purpletulip.cn, purpletulip.com.cn, purpletulip.net.cn, purpletulip.org.cn). But after checking it, we find this name conflict with your company name or trademark. In order to deal with this matter better, it\'s necessary to send this message to your company and confirm whether this company is your distributor or business partner in China? Best Regards Wade Liu | Service &amp; Operations Manager China Registry (Head Office) www.chinaregistry.com.cn Tel: +86-2161918696 Fax: +86-2161918697 Mob: +86-13816428671 6012, Xingdi Building, No. 1698 Yishan Road, Shanghai 201103, China'),(738,68,'name','Eric Jones| | Jones'),(739,68,'email','eric.jones.z.mail@gmail.com'),(740,68,'how_did_you_hear_about_us_','Google search'),(741,68,'message','Hello, my name’s Eric and I just ran across your website at purpletulip.ca... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(742,68,'date___time_of_event',''),(743,68,'number_of_guests_expected','Ncqo Xg'),(744,68,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Ptjggesw'),(745,68,'location_of_event','U B x'),(746,68,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(747,68,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(748,68,'other_notes___special_requests','Hello, my name’s Eric and I just ran across your website at purpletulip.ca... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(749,69,'name','Vonnie Seiler| | Seiler'),(750,69,'email','vonnie@bestlocaldata.com'),(751,69,'how_did_you_hear_about_us_','Google search'),(752,69,'message','We at BestLocalData.com has been hit badly by Covid-19 and as a result BestLocalData.com is shutting down. We provided the best data to companies to find their right customer base, we don\'t want other companies to go down the same path we went and go out of business. As a result we are providing our data till the end of the week at the lowest possible prices. BestLocalData.com'),(753,69,'date___time_of_event',''),(754,69,'number_of_guests_expected','Y Lfm'),(755,69,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Ke fsyhvrt Og'),(756,69,'location_of_event','Vueu Xfg'),(757,69,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(758,69,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(759,69,'other_notes___special_requests','We at BestLocalData.com has been hit badly by Covid-19 and as a result BestLocalData.com is shutting down. We provided the best data to companies to find their right customer base, we don\'t want other companies to go down the same path we went and go out of business. As a result we are providing our data till the end of the week at the lowest possible prices. BestLocalData.com'),(760,70,'name','Addie McAlroy| | McAlroy'),(761,70,'email','mcalroy.addie@yahoo.com'),(762,70,'how_did_you_hear_about_us_','Google search'),(763,70,'message','We are the best place for frustrated site Owners who has slow websites. We\'ll make your website so fast that your visitors will say \"WOW!\" https://first-class-promo.com/speedup With best regards, We offer the top IT services you may order on our website for making big money in a small business, still not interested in getting clients? Here is a straightforward, 1-click unsubscribe link: https://first-class-promo.com/?unsubscribe=purpletulip.ca'),(764,70,'date___time_of_event',''),(765,70,'number_of_guests_expected','Ezyji'),(766,70,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Eontz'),(767,70,'location_of_event','Mhh Mp'),(768,70,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(769,70,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(770,70,'other_notes___special_requests','Finally, a comprehensive Website Speed – Up service where you can sit back and let us do everything for you. We\'ll make your website so fast that your visitors will say \"WOW!\". https://first-class-promo.com/speedup Kind regards, We offer the very best marketing services you may check on our website for making big money in a small business, still not considering getting new business? Here is a straightforward, 1-click unsubscribe link: https://first-class-promo.com/?unsubscribe=purpletulip.ca'),(771,71,'name','Jo Kerry| | Kerry'),(772,71,'email','jo@order-fulfillment.net'),(773,71,'how_did_you_hear_about_us_','Google search'),(774,71,'message','Hello from order-fulfillment.net, Doing your own product shipping or order fulfillment in house? Tired of it? Visit us on www.order-fulfillment.net We can store, inventory, and manage your drop shipping / order fulfillment for you. Based in the US for almost 2 decades - we ship around the world and will save you time and money. Who would be the best contact at your company to discuss? Here are some of the items we ship for clients: -Books, training manuals, guides -New member welcomes boxes and gifts -Product samples -Marketing materials -Medical program test kits -Follow up gifts to clients, leads, and prospects Thank you! Fulfillment Warehouse https://order-fulfillment.net'),(775,71,'date___time_of_event',''),(776,71,'number_of_guests_expected','Yp zkecjyg U'),(777,71,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','B jo Gdm'),(778,71,'location_of_event','Mufaoi P W'),(779,71,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(780,71,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(781,71,'other_notes___special_requests','Hello from order-fulfillment.net, Doing your own product shipping or order fulfillment in house? Tired of it? Visit us on www.order-fulfillment.net We can store, inventory, and manage your drop shipping / order fulfillment for you. Based in the US for almost 2 decades - we ship around the world and will save you time and money. Who would be the best contact at your company to discuss? Here are some of the items we ship for clients: -Books, training manuals, guides -New member welcomes boxes and gifts -Product samples -Marketing materials -Medical program test kits -Follow up gifts to clients, leads, and prospects Thank you! Fulfillment Warehouse https://order-fulfillment.net'),(782,72,'name','Bittu| | Aujla'),(783,72,'email','bittu_aujla@hotmail.com'),(784,72,'how_did_you_hear_about_us_','Referral'),(785,72,'message','Hi, I’m having my daughters bridal shower outdoors at our home. Would love to discuss catering'),(786,72,'date___time_of_event','31/07/2021 00:00'),(787,72,'number_of_guests_expected','50'),(788,72,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Bridal shower'),(789,72,'location_of_event','Surrey bc'),(790,72,'event_type__select_all_that_apply_','Buffet / Family style - served'),(791,72,'cuisine_preference','West Coast| Indian - Progressive'),(792,72,'other_notes___special_requests',''),(793,73,'name','Wyatt Sommerlad| | Sommerlad'),(794,73,'email','wyatt.sommerlad13@gmail.com'),(795,73,'how_did_you_hear_about_us_','Google search'),(796,73,'message','Don\'t buy traffic for your website until you\'ve seen this first: http://bit.ly/boost-web-traffic-now'),(797,73,'date___time_of_event',''),(798,73,'number_of_guests_expected','Yt Xkppj Ivs'),(799,73,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Noh Trs hazkgy'),(800,73,'location_of_event','Ovmpw Lqp'),(801,73,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(802,73,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(803,73,'other_notes___special_requests','Don\'t buy traffic for your website until you\'ve seen this first: http://bit.ly/boost-web-traffic-now'),(804,74,'name','Eric Jones| | Jones'),(805,74,'email','eric.jones.z.mail@gmail.com'),(806,74,'how_did_you_hear_about_us_','Google search'),(807,74,'message','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(808,74,'date___time_of_event',''),(809,74,'number_of_guests_expected','Rlqljp'),(810,74,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','K Oth om'),(811,74,'location_of_event','Ovhjtt nqhl tv'),(812,74,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(813,74,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(814,74,'other_notes___special_requests','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(815,75,'name','Serena Bibi| | Bibi'),(816,75,'email','serena@fbcourses.net'),(817,75,'how_did_you_hear_about_us_','Google search'),(818,75,'message','Hello from FbCourses.net Want to pay $0.01 a click? We got you covered. A great team of Global Digital Marketing experts have compiled this list of 13 Best + Free Facebook Advertising Training, Classes and Courses to help you learn and excel at Facebook Ads &amp; Marketing. Thousands of professionals have already benefited from this list on Facebook Training. Regards, Serena'),(819,75,'date___time_of_event',''),(820,75,'number_of_guests_expected','N ja rfq C'),(821,75,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Beih qxmp'),(822,75,'location_of_event','Rbrirfybwrq rt'),(823,75,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(824,75,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(825,75,'other_notes___special_requests','Hello from FbCourses.net Want to pay $0.01 a click? We got you covered. A great team of Global Digital Marketing experts have compiled this list of 13 Best + Free Facebook Advertising Training, Classes and Courses to help you learn and excel at Facebook Ads &amp; Marketing. Thousands of professionals have already benefited from this list on Facebook Training. Regards, Serena'),(826,76,'name','Juliet Fox| | Fox'),(827,76,'email','fox.juliet@msn.com'),(828,76,'how_did_you_hear_about_us_','Google search'),(829,76,'message','Don\'t buy traffic for your website until you\'ve seen this first: http://bit.ly/boost-web-traffic-now'),(830,76,'date___time_of_event',''),(831,76,'number_of_guests_expected','U fnshoih i'),(832,76,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','G nkuoxr'),(833,76,'location_of_event','Hoylruo'),(834,76,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(835,76,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(836,76,'other_notes___special_requests','Don\'t buy traffic for your website until you\'ve seen this first: http://bit.ly/boost-web-traffic-now'),(837,77,'name','Darlene Kirsch| | Kirsch'),(838,77,'email','darlene.kirsch@googlemail.com'),(839,77,'how_did_you_hear_about_us_','Google search'),(840,77,'message','Good Afternoon, How are you doing regarding your Google Business Reviews? Google reviews improve regional online research ranking. One of the most significant benefits online reviews provide your business is an enhancement in local internet search ranking. https://iseo-store.com/google-business-and-maps-reviews Kind Regards, We offer the best IT services you may check on our website for making big money in a small business, still not enthusiastic about getting new business? Here is a simple, 1-click unsubscribe link: https://iseo-store.com/?unsubscribe=purpletulip.ca'),(841,77,'date___time_of_event',''),(842,77,'number_of_guests_expected','Tdpjpceiqo n'),(843,77,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Qlcmcr L'),(844,77,'location_of_event','N Axv rlsr'),(845,77,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(846,77,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(847,77,'other_notes___special_requests','Hey, How are you doing regarding your Google Business Reviews? Google reviews expand your internet exposure and local SEO. Since successful marketing tactics drive google’s algorithm, businesses with multiple reviews make an appearance first in local searches. https://iseo-store.com/google-business-and-maps-reviews Kind Regards, We offer the very best marketing services you can check on our website for making big money in a small business, still not thinking about getting new clients? Here is a straightforward, 1-click unsubscribe link: https://iseo-store.com/?unsubscribe=purpletulip.ca'),(848,78,'name','Nicki Maconochie| | Maconochie'),(849,78,'email','maconochie.nicki@yahoo.com'),(850,78,'how_did_you_hear_about_us_','Google search'),(851,78,'message','The plug welcomes you with a super discount of 15% on every product for a limited period of time! (Promo code: THEPLUG) We offer the largest assortment of private databases! Such as: - The Largest collection of Linkedin Databases! - Forex Consumers (worldwide) - Casino Consumers (worldwide) - Business Databases (worldwide) - Cryptocurrency consumers (worldwide) - many more.. And the best part of it! We are the only source you will ever need! We have the largest database on the market with the greatest prices and team. Visit us: https://silent-plug.com/'),(852,78,'date___time_of_event',''),(853,78,'number_of_guests_expected','Gtba Tx P U'),(854,78,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Zp Q Eh'),(855,78,'location_of_event','Kjtmwrfg'),(856,78,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(857,78,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(858,78,'other_notes___special_requests','The plug welcomes you with a super discount of 15% on every product for a limited period of time! (Promo code: THEPLUG) We offer the largest assortment of private databases! Such as: - The Largest collection of Linkedin Databases! - Forex Consumers (worldwide) - Casino Consumers (worldwide) - Business Databases (worldwide) - Cryptocurrency consumers (worldwide) - many more.. And the best part of it! We are the only source you will ever need! We have the largest database on the market with the greatest prices and team. Visit us: https://silent-plug.com/'),(859,79,'name','Eric Jones| | Jones'),(860,79,'email','eric.jones.z.mail@gmail.com'),(861,79,'how_did_you_hear_about_us_','Google search'),(862,79,'message','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(863,79,'date___time_of_event',''),(864,79,'number_of_guests_expected','Cdtcsib bawbo'),(865,79,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Agpnlowcn'),(866,79,'location_of_event','C Aungurj'),(867,79,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(868,79,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(869,79,'other_notes___special_requests','Hey, this is Eric and I ran across purpletulip.ca a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=purpletulip.ca'),(870,80,'name','Cinda Cheney| | Cheney'),(871,80,'email','cinda.cheney@outlook.com'),(872,80,'how_did_you_hear_about_us_','Google search'),(873,80,'message','Good evening I tried to find you on google maps, but I couldn\'t, so I\'ve visited your website purpletulip.ca and saw that you have some images that we can make use of so clients can find you locally. Let us make your Images store your business information and bring leads and clients using GeoTagging, learn more: https://superb-promo.com/imagegeotagging I know it will work. Thanks! Kind regards, We offer the most effective marketing services you can order on our website for making big money in a small business, still not considering getting new clients? Here is a simple, 1-click unsubscribe link: https://superb-promo.com/?unsubscribe=purpletulip.ca'),(874,80,'date___time_of_event',''),(875,80,'number_of_guests_expected','Sfkea'),(876,80,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Spbyghdcy'),(877,80,'location_of_event','Qzsj psso'),(878,80,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(879,80,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(880,80,'other_notes___special_requests','Good morning I tried to find you on google maps, but I couldn\'t, so I\'ve visited your website purpletulip.ca and saw that you have some images that we can make use of so clients can find you locally. A secret revealed to Rank Higher on Google Maps. Learn how local businesses get hundreds of clients daily. Learn more: https://superb-promo.com/imagegeotagging I know it will work. Thanks! Kind regards, We offer the best IT services you can purchase on our website for making big money in a small business, still not thinking about getting new customers? Here is a simple, 1-click unsubscribe link: https://superb-promo.com/?unsubscribe=purpletulip.ca'),(881,81,'name','Aimee Mullens| | Mullens'),(882,81,'email','aimee@bestlocaldata.com'),(883,81,'how_did_you_hear_about_us_','Google search'),(884,81,'message','It is with sad regret to inform you that because of the Covid pandemic BestLocalData.com is shutting down at the end of the month. We have lost family members and colleagues and have decided to shut down BestLocalData.com It was a pleasure serving you all these years. We have made all our databases available for $99 (All of it for $99) for those interested. Kind Regards, BestLocalData.com Aimee'),(885,81,'date___time_of_event',''),(886,81,'number_of_guests_expected','Kyrvuhpyxv'),(887,81,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Wq qwmzb'),(888,81,'location_of_event','Yhqtkl m'),(889,81,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(890,81,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(891,81,'other_notes___special_requests','It is with sad regret to inform you that because of the Covid pandemic BestLocalData.com is shutting down at the end of the month. We have lost family members and colleagues and have decided to shut down BestLocalData.com It was a pleasure serving you all these years. We have made all our databases available for $99 (All of it for $99) for those interested. Kind Regards, BestLocalData.com Aimee'),(892,82,'name','Nelle Gsell| | Gsell'),(893,82,'email','nelle@order-fulfillment.net'),(894,82,'how_did_you_hear_about_us_','Google search'),(895,82,'message','Hi , I am following up on my message below. Who would I speak with about your company order fulfillment and shipping ? Regards, Nelle order-fulfillment.net'),(896,82,'date___time_of_event',''),(897,82,'number_of_guests_expected','Ekavizhfd Xz T'),(898,82,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','B O Yn qjwcg'),(899,82,'location_of_event','Flj Qgw Mneaj'),(900,82,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(901,82,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(902,82,'other_notes___special_requests','Hi , I am following up on my message below. Who would I speak with about your company order fulfillment and shipping ? Regards, Nelle order-fulfillment.net'),(903,83,'name','Alejandrina Richard| | Richard'),(904,83,'email','richard.alejandrina81@yahoo.com'),(905,83,'how_did_you_hear_about_us_','Google search'),(906,83,'message','Good evening - purpletulip.ca, Social Signals Marketing - Drive traffic to your website. And that\'s why were here! We have carefully developed a selection of packages, including a well-that ratio of social signals through the most popular social websites sites. Check what we are able to do for you: https://first-class-promotion.com/socialsignals Sincerely, We offer the very best marketing services you may order on our shop for making big money in a small business, still not thinking about getting new clients? Here is a quick, 1-click unsubscribe link: https://first-class-promotion.com/?unsubscribe=purpletulip.ca'),(907,83,'date___time_of_event',''),(908,83,'number_of_guests_expected','Pgj yhyoocexa'),(909,83,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Stxted Wpc H x'),(910,83,'location_of_event','Pa Zpbzv'),(911,83,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(912,83,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(913,83,'other_notes___special_requests','Greetings - purpletulip.ca, Let\'s start with a simple fact: Social media plays an important role in your brand\'s online success. Moreover, if you\'re doing SEO, you ought to be thinking of social media marketing at the same time. Having your website shared around the most popular social networking sites is critical that will help you increase visibility on engines like google. Check what we are able to do for you: https://first-class-promotion.com/socialsignals Regards, We offer the very best marketing services you may find on our website for making big money in a small business, still not enthusiastic about getting clients? Here is an easy, 1-click unsubscribe link: https://first-class-promotion.com/?unsubscribe=purpletulip.ca'),(914,84,'name','Artur| | Meyster'),(915,84,'email','artur.meyster@careerkarma.co'),(916,84,'how_did_you_hear_about_us_','Google search'),(917,84,'message','Hi - I was surfing purpletulip.ca and it looks like you\'ve invested a lot of time in your content strategy so I decided to reach out. I\'m the founder of Career Karma, where we are passionate about helping people switch careers and learn new skills. I think this is especially relevant now with thousands of people losing their jobs due to COVID. I was wondering if I can submit a high-quality original blog post that\'s never been published anywhere else, to be featured on your site? Here\'s a list of possible topics: 1) How remote work is changing tech salaries in the era of coronavirus 2) How to Know if your current career isn\'t right for you 3) What to do if you lost your job because of COVID-19 4) The future of work: are your skills up to date? 5) How new technologies are disrupting incumbent industries 6) The most resilient jobs during COVID-19 7) How to hire and retain tech talents 8) How COVID is impacting the education industry 9) What are the future trends for the education industry Warmly, Artur Meyster Founder of Career Karma https://www.linkedin.com/in/meyster'),(918,84,'date___time_of_event',''),(919,84,'number_of_guests_expected','E biz ouyi'),(920,84,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Pd cm lun vt'),(921,84,'location_of_event','Pje C Uwwv'),(922,84,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(923,84,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(924,84,'other_notes___special_requests','Hi - I was surfing purpletulip.ca and it looks like you\'ve invested a lot of time in your content strategy so I decided to reach out. I\'m the founder of Career Karma, where we are passionate about helping people switch careers and learn new skills. I think this is especially relevant now with thousands of people losing their jobs due to COVID. I was wondering if I can submit a high-quality original blog post that\'s never been published anywhere else, to be featured on your site? Here\'s a list of possible topics: 1) How remote work is changing tech salaries in the era of coronavirus 2) How to Know if your current career isn\'t right for you 3) What to do if you lost your job because of COVID-19 4) The future of work: are your skills up to date? 5) How new technologies are disrupting incumbent industries 6) The most resilient jobs during COVID-19 7) How to hire and retain tech talents 8) How COVID is impacting the education industry 9) What are the future trends for the education industry Warmly, Artur Meyster Founder of Career Karma https://www.linkedin.com/in/meyster'),(925,85,'name','Aashima| | Grover'),(926,85,'email','aashimagrover17@gmail.com'),(927,85,'how_did_you_hear_about_us_','Instagram'),(928,85,'message','Hi, I’m looking for catering for my bridal shower. We are looking for canapés style catering for the event.'),(929,85,'date___time_of_event','08/08/2021 18:00'),(930,85,'number_of_guests_expected','50'),(931,85,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Bridal shower'),(932,85,'location_of_event','Blackwood lane winery'),(933,85,'event_type__select_all_that_apply_','Buffet / Family style drop off| Cocktail/Appies'),(934,85,'cuisine_preference','Other - Custom'),(935,85,'other_notes___special_requests',''),(936,86,'name','Tangela Fielding| | Fielding'),(937,86,'email','gidneybery32@gmail.com'),(938,86,'how_did_you_hear_about_us_','Google search'),(939,86,'message','Hi there If you ever need Negative SEO to de-rank any site, you can hire us here https://www.speed-seo.net/product/negative-seo-service/'),(940,86,'date___time_of_event',''),(941,86,'number_of_guests_expected','Zxebrg'),(942,86,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Flc xtgdu'),(943,86,'location_of_event','Lfqmq g Q w'),(944,86,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(945,86,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(946,86,'other_notes___special_requests','Hi there If you ever need Negative SEO to de-rank any site, you can hire us here https://www.speed-seo.net/product/negative-seo-service/'),(947,87,'name','Pam Doorly| | Doorly'),(948,87,'email','pam.doorly66@gmail.com'),(949,87,'how_did_you_hear_about_us_','Google search'),(950,87,'message','Good Afternoon Minimize the time and charges to advertise your internet site with the Artificial Intelligence Website Submitter. https://first-class-marketing.com Warm regards, We offer the most effective marketing services you may order on our website for making big money in a small business, still not considering getting new customers? Here is a straightforward, 1-click unsubscribe link: https://first-class-marketing.com/?unsubscribe=purpletulip.ca'),(951,87,'date___time_of_event',''),(952,87,'number_of_guests_expected','Dfaahtgbjemx'),(953,87,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','S Czo P cuw'),(954,87,'location_of_event','Nqlfq T'),(955,87,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(956,87,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(957,87,'other_notes___special_requests','Hey Use our Artificial Intelligence service to submit your internet site to a huge number of directories and engines like google. https://first-class-marketing.com With warm regards, We offer the best IT services you can order on our online shop for making big money in a small business, still not enthusiastic about getting clients? Here is a simple, 1-click unsubscribe link: https://first-class-marketing.com/?unsubscribe=purpletulip.ca'),(958,88,'name','Eric Jones| | Jones'),(959,88,'email','eric.jones.z.mail@gmail.com'),(960,88,'how_did_you_hear_about_us_','Google search'),(961,88,'message','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(962,88,'date___time_of_event',''),(963,88,'number_of_guests_expected','Dophl'),(964,88,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Iyoui F P'),(965,88,'location_of_event','Jft uh'),(966,88,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(967,88,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(968,88,'other_notes___special_requests','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(969,89,'name','Isaac| | Domains'),(970,89,'email','isaacltnj@gmail.com'),(971,89,'how_did_you_hear_about_us_','Google search'),(972,89,'message','Hello, The domain name: CatererBC.com is now up for sale by the owner to catering services in BC. Would you be interested in acquiring it? To purchase or submit an offer, visit www.CatererBC.com Let me know if you have any questions. Kind regards, Isaac Domains'),(973,89,'date___time_of_event','27/07/2021 00:00'),(974,89,'number_of_guests_expected','1'),(975,89,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','1'),(976,89,'location_of_event','BC'),(977,89,'event_type__select_all_that_apply_','Casual - drop off'),(978,89,'cuisine_preference','Other - Custom'),(979,89,'other_notes___special_requests',''),(980,90,'name','Alanna Perry| | Perry'),(981,90,'email','alanna.perry@gmail.com'),(982,90,'how_did_you_hear_about_us_','Google search'),(983,90,'message','Good Afternoon Hope you’re good, and that customers are profitable. Internet traffic is free. Being able to consistently receive targeted traffic to purpletulip.ca will undeniably increase your leads and sales. https://ultimate-marketers.com/backlinks-generator Sincerely, We offer the best marketing services you can purchase on our website for making big money in a small business, still not enthusiastic about getting new clients? Here is a simple, 1-click unsubscribe link: https://ultimate-marketers.com/?unsubscribe=purpletulip.ca'),(984,90,'date___time_of_event',''),(985,90,'number_of_guests_expected','A Raaifb'),(986,90,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Tnmtnttazq X'),(987,90,'location_of_event','N j x'),(988,90,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(989,90,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(990,90,'other_notes___special_requests','Good morning Hope you’re excellent, and that clients are profitable. If you are a business owner for purpletulip.ca, you likely want to bring traffic to it. Backlinks are important because they specifically aimed at helping you do just that. https://ultimate-marketers.com/backlinks-generator With best regards, We offer the very best IT services you may purchase on our website for making big money in a small business, still not thinking about getting new business? Here is a simple, 1-click unsubscribe link: https://ultimate-marketers.com/?unsubscribe=purpletulip.ca'),(991,91,'name','Eric Jones| | Jones'),(992,91,'email','eric.jones.z.mail@gmail.com'),(993,91,'how_did_you_hear_about_us_','Google search'),(994,91,'message','Hello, my name’s Eric and I just ran across your website at purpletulip.ca... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(995,91,'date___time_of_event',''),(996,91,'number_of_guests_expected','Xo zqc Zpbqump'),(997,91,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','F Tji'),(998,91,'location_of_event','Or wd'),(999,91,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1000,91,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1001,91,'other_notes___special_requests','Hello, my name’s Eric and I just ran across your website at purpletulip.ca... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(1002,92,'name','Steve James| | James'),(1003,92,'email','steve@explainervideos4u.xyz'),(1004,92,'how_did_you_hear_about_us_','Google search'),(1005,92,'message','Hi, We\'d like to introduce to you our explainer video service which we feel can benefit your site purpletulip.ca. Check out some of our existing videos here: https://www.youtube.com/watch?v=ivTmAwuli14 https://www.youtube.com/watch?v=uywKJQvfeAM https://www.youtube.com/watch?v=oPNdmMo40pI https://www.youtube.com/watch?v=6gRb-HPo_ck All of our videos are in a similar animated format as the above examples and we have voice over artists with US/UK/Australian accents. We can also produce voice overs in languages other than English. They can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video such as Youtube, and can be embedded into your website or featured on landing pages. Our prices are as follows depending on video length: 1 minute = $189 1-2 minutes = $339 2-3 minutes = $449 *All prices above are in USD and include an engaging, captivating video with full script and voice-over. If this is something you would like to discuss further, don\'t hesitate to get in touch. If you are not interested, simply delete this message and we won\'t contact you again. Kind Regards, Steve'),(1006,92,'date___time_of_event',''),(1007,92,'number_of_guests_expected','Cx mnml qr i'),(1008,92,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','S Ttqb rhtaz'),(1009,92,'location_of_event','Qvpkzfrbqzbgx'),(1010,92,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1011,92,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1012,92,'other_notes___special_requests','Hi, We\'d like to introduce to you our explainer video service which we feel can benefit your site purpletulip.ca. Check out some of our existing videos here: https://www.youtube.com/watch?v=ivTmAwuli14 https://www.youtube.com/watch?v=uywKJQvfeAM https://www.youtube.com/watch?v=oPNdmMo40pI https://www.youtube.com/watch?v=6gRb-HPo_ck All of our videos are in a similar animated format as the above examples and we have voice over artists with US/UK/Australian accents. We can also produce voice overs in languages other than English. They can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video such as Youtube, and can be embedded into your website or featured on landing pages. Our prices are as follows depending on video length: 1 minute = $189 1-2 minutes = $339 2-3 minutes = $449 *All prices above are in USD and include an engaging, captivating video with full script and voice-over. If this is something you would like to discuss further, don\'t hesitate to get in touch. If you are not interested, simply delete this message and we won\'t contact you again. Kind Regards, Steve'),(1013,93,'name','Eric Jones| | Jones'),(1014,93,'email','eric.jones.z.mail@gmail.com'),(1015,93,'how_did_you_hear_about_us_','Google search'),(1016,93,'message','Hello, my name’s Eric and I just ran across your website at purpletulip.ca... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(1017,93,'date___time_of_event',''),(1018,93,'number_of_guests_expected','Mipwepylwzgu'),(1019,93,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Mju o qa Altx'),(1020,93,'location_of_event','Tj kxoyb'),(1021,93,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1022,93,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1023,93,'other_notes___special_requests','Hello, my name’s Eric and I just ran across your website at purpletulip.ca... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(1024,94,'name','Eric Jones| | Jones'),(1025,94,'email','eric.jones.z.mail@gmail.com'),(1026,94,'how_did_you_hear_about_us_','Google search'),(1027,94,'message','Hello, my name’s Eric and I just ran across your website at purpletulip.ca... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(1028,94,'date___time_of_event',''),(1029,94,'number_of_guests_expected','Qucxagcc'),(1030,94,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Xr qgdo'),(1031,94,'location_of_event','Qvhow'),(1032,94,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1033,94,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1034,94,'other_notes___special_requests','Hello, my name’s Eric and I just ran across your website at purpletulip.ca... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(1035,95,'name','Carole Charbonneau| | Charbonneau'),(1036,95,'email','carole@bestlocaldata.com'),(1037,95,'how_did_you_hear_about_us_','Google search'),(1038,95,'message','6 August 2021. This is the last day BestLocalData.com will be online and operate. We are shutting down and all our data is for sale for $99. Regards, Carole'),(1039,95,'date___time_of_event',''),(1040,95,'number_of_guests_expected','Nq xq'),(1041,95,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','R Notnttx'),(1042,95,'location_of_event','Ubdygg'),(1043,95,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1044,95,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1045,95,'other_notes___special_requests','6 August 2021. This is the last day BestLocalData.com will be online and operate. We are shutting down and all our data is for sale for $99. Regards, Carole'),(1046,96,'name','Linda Miller| | Miller'),(1047,96,'email','lindamillerleads@gmail.com'),(1048,96,'how_did_you_hear_about_us_','Google search'),(1049,96,'message','Hi purpletulip.ca Owner, Do you want to know the Secrets To Mastering Internet Lead Conversion? I spent the last 10+ years generating, calling and closing Internet leads. I will be sharing my decade long conversion code for you to copy during this new, free webinar! During the webinar, I will show you: Every business needs to capture more leads, create more appointments, and close more deals. If you commit to mastering the content in this session, you will earn more money immediately– not in six months or a year, but literally as soon as you put your new knowledge to work. I have used this method on 1,000\'s of Internet leads of all price points. If you want Internet leads, I have the key to CONVERTING them. Hope you can make it... https://TalkWithWebTraffic.com If getting more Hot Phone Leads is a part of your business plan (and why wouldn\'t it be?), I\'ve got great news for you. 1. 12 ways to generate seller leads 2. How to get seller leads on the phone 3. What to say on the phone so you get instant sales 4. The Key to SMS Marketing 5 Never Cold Call Again 6. Better leads = Faster conversions 7. The four keys to inside sales success 8. The 10 steps to a perfect sales call with an Internet lead More than 7,000 people have already registered. The last time I did a webinar with Top Producers, hundreds of people got locked out and could only watch the replay. Get your spot now and tune in early! ==&gt; Save my spot https://TalkWithWebTraffic.com We\'ve become obsessed with making sure our clients are converting the leads we generate for them. How much are you getting back in commissions compared to how much are you spending on advertising? But what is even better than a great ROI is a quick ROI. During this live webinar I will show you how we can help you generate higher quality leads that are easier to convert, fast. ==&gt; Register at https://TalkWithWebTraffic.com Your #1 Fan, Linda Miller Be there or be square. If you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=purpletulip.ca'),(1050,96,'date___time_of_event','Linda Miller'),(1051,96,'number_of_guests_expected','Rdvxcuhnol uo'),(1052,96,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Ipkisvflo R'),(1053,96,'location_of_event','Td b Rinymenx'),(1054,96,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1055,96,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1056,96,'other_notes___special_requests','Hi purpletulip.ca Owner, Do you want to know the Secrets To Mastering Internet Lead Conversion? I spent the last 10+ years generating, calling and closing Internet leads. I will be sharing my decade long conversion code for you to copy during this new, free webinar! During the webinar, I will show you: Every business needs to capture more leads, create more appointments, and close more deals. If you commit to mastering the content in this session, you will earn more money immediately– not in six months or a year, but literally as soon as you put your new knowledge to work. I have used this method on 1,000\'s of Internet leads of all price points. If you want Internet leads, I have the key to CONVERTING them. Hope you can make it... https://TalkWithWebTraffic.com If getting more Hot Phone Leads is a part of your business plan (and why wouldn\'t it be?), I\'ve got great news for you. 1. 12 ways to generate seller leads 2. How to get seller leads on the phone 3. What to say on the phone so you get instant sales 4. The Key to SMS Marketing 5 Never Cold Call Again 6. Better leads = Faster conversions 7. The four keys to inside sales success 8. The 10 steps to a perfect sales call with an Internet lead More than 7,000 people have already registered. The last time I did a webinar with Top Producers, hundreds of people got locked out and could only watch the replay. Get your spot now and tune in early! ==&gt; Save my spot https://TalkWithWebTraffic.com We\'ve become obsessed with making sure our clients are converting the leads we generate for them. How much are you getting back in commissions compared to how much are you spending on advertising? But what is even better than a great ROI is a quick ROI. During this live webinar I will show you how we can help you generate higher quality leads that are easier to convert, fast. ==&gt; Register at https://TalkWithWebTraffic.com Your #1 Fan, Linda Miller Be there or be square. If you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=purpletulip.ca'),(1057,97,'name','Terence Steger| | Steger'),(1058,97,'email','steger.terence@outlook.com'),(1059,97,'how_did_you_hear_about_us_','Google search'),(1060,97,'message','Thoughts about purpletulip.ca Hi there, If you want to build a successful business, you need to take your online presence into your own hands. Hoping for more business is not the best strategy for success. The only package you’ll need to attract rich customers conveniently: https://first-class-promotion.com/backlinks-generator Kind regards, We offer the most effective marketing services you can order on our shop to make big money in a small business, still not interested in getting new clients? Here is an easy, 1-click unsubscribe link: https://first-class-promotion.com/?unsubscribe=purpletulip.ca'),(1061,97,'date___time_of_event','Terence Steger'),(1062,97,'number_of_guests_expected','Nnjzk iq'),(1063,97,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Lhbbehlay Qb'),(1064,97,'location_of_event','Npthavf'),(1065,97,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1066,97,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1067,97,'other_notes___special_requests','The appropriate person to contact? Good Afternoon, The time has come to ask yourselves does purpletulip.ca bring clients … and what are you doing to change it? Here is the big package you need to captivate big clients through your website: https://first-class-promotion.com/backlinks-generator Regards, We offer the top marketing services you may order on our online shop to make big money in a small business, still not enthusiastic about getting clients? Here is a quick, 1-click unsubscribe link: https://first-class-promotion.com/?unsubscribe=purpletulip.ca'),(1068,98,'name','Maira Scammell| | Scammell'),(1069,98,'email','maira@sundatagroup.one'),(1070,98,'how_did_you_hear_about_us_','Google search'),(1071,98,'message','New data just for you! Hi, just letting you know you can now select from hundreds of millions of data records in 200+ countries and in various industries. Benefit from it as soon as possible. Browse our databases or request a custom list that suits your needs. There\'s something for everyone. Have a look! https://sundatagroup.one'),(1072,98,'date___time_of_event',''),(1073,98,'number_of_guests_expected','Nywwfskt xa'),(1074,98,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Aqt Oib bx'),(1075,98,'location_of_event','Timn hgn'),(1076,98,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1077,98,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1078,98,'other_notes___special_requests','New data just for you! Hi, just letting you know you can now select from hundreds of millions of data records in 200+ countries and in various industries. Benefit from it as soon as possible. Browse our databases or request a custom list that suits your needs. There\'s something for everyone. Have a look! https://sundatagroup.one'),(1079,99,'name','Tandy Cram| | Cram'),(1080,99,'email','marshabethel7162@gmail.com'),(1081,99,'how_did_you_hear_about_us_','Google search'),(1082,99,'message','Hello If you ever need Negative SEO to de-rank any site, you can hire us here https://www.speed-seo.net/product/negative-seo-service/'),(1083,99,'date___time_of_event',''),(1084,99,'number_of_guests_expected','Wfskjtvuack'),(1085,99,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Voxpa'),(1086,99,'location_of_event','Rvx fov'),(1087,99,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1088,99,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1089,99,'other_notes___special_requests','Greetings If you ever need Negative SEO to de-rank any site, you can hire us here https://www.speed-seo.net/product/negative-seo-service/'),(1090,100,'name','Eric Jones| | Jones'),(1091,100,'email','eric.jones.z.mail@gmail.com'),(1092,100,'how_did_you_hear_about_us_','Google search'),(1093,100,'message','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(1094,100,'date___time_of_event','Eric Jones'),(1095,100,'number_of_guests_expected','Nfn Eo'),(1096,100,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Jfaaglvl'),(1097,100,'location_of_event','Adn wwqrmveck'),(1098,100,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1099,100,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1100,100,'other_notes___special_requests','Hi, my name is Eric and I’m betting you’d like your website purpletulip.ca to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at purpletulip.ca. Talk With Web Visitor – CLICK HERE https://talkwithwebvisitors.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=purpletulip.ca'),(1101,101,'name','Tyrell Beem| | Beem'),(1102,101,'email','tyrell@sundatagroup.one'),(1103,101,'how_did_you_hear_about_us_','Google search'),(1104,101,'message','Hello. Need leads for your business? We have a limited offer where we sell almost 400 million executives around the world in 165 countries for $299. Or you can buy your country individually for $99. www.SunDataGroup.one'),(1105,101,'date___time_of_event',''),(1106,101,'number_of_guests_expected','Gm pxac dbxkj'),(1107,101,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Iekhl rauyt'),(1108,101,'location_of_event','Jpnbitoh'),(1109,101,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1110,101,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1111,101,'other_notes___special_requests','Hello. Need leads for your business? We have a limited offer where we sell almost 400 million executives around the world in 165 countries for $299. Or you can buy your country individually for $99. www.SunDataGroup.one'),(1112,102,'name','Elvira McCaskill| | McCaskill'),(1113,102,'email','elvira@sundatagroup.one'),(1114,102,'how_did_you_hear_about_us_','Google search'),(1115,102,'message','We have an amazing database of leads for you. All countries are $99 and you can buy the entire world 165 countries for $179. This offer is valid till Friday. www.SunDataGroup.one'),(1116,102,'date___time_of_event',''),(1117,102,'number_of_guests_expected','Bsgnc i yoqpl'),(1118,102,'event___occassion__wedding__bridal_shower__pre_wedding_event__anniversary__milestone_birthday_etc_','Asf qgnx'),(1119,102,'location_of_event','Gtmo y f V l'),(1120,102,'event_type__select_all_that_apply_','Casual - drop off| Buffet / Family style drop off| Buffet / Family style - served| Cocktail/Appies| Live cooking stations| Plated dinner'),(1121,102,'cuisine_preference','West Coast| Global| Indian - Traditional| Indian - Progressive| Other - Custom'),(1122,102,'other_notes___special_requests','We have an amazing database of leads for you. All countries are $99 and you can buy the entire world 165 countries for $179. This offer is valid till Friday. www.SunDataGroup.one');
/*!40000 ALTER TABLE `wpw8_weforms_entrymeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpw8_wpforms_lite`
--

DROP TABLE IF EXISTS `wpw8_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpw8_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpw8_wpforms_lite`
--

LOCK TABLES `wpw8_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wpw8_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpw8_wpforms_lite` 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 2021-08-25  8:44:35
