-- MySQL dump 10.13 Distrib 5.7.22, for Linux (x86_64) -- -- Host: 127.0.0.1 Database: wordpress -- ------------------------------------------------------ -- Server version 5.7.22-0ubuntu0.16.04.1 /*!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 utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)), KEY `woo_idx_comment_type` (`comment_type`) ) ENGINE=InnoDB AUTO_INCREMENT=120 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-06-11 07:30:53','2018-06-11 07:30:53','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from Gravatar.',0,'1','','',0,0),(117,418,'WooCommerce','','','','2018-07-08 23:14:02','2018-07-08 23:14:02','Payment to be made upon delivery. Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(118,419,'WooCommerce','','','','2018-07-08 23:14:45','2018-07-08 23:14:45','Payment to be made upon delivery. Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(119,420,'WooCommerce','','','','2018-07-08 23:15:45','2018-07-08 23:15:45','Payment to be made upon delivery. Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_failed_jobs` -- DROP TABLE IF EXISTS `wp_failed_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_failed_jobs` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `job` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `failed_at` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_failed_jobs` -- LOCK TABLES `wp_failed_jobs` WRITE; /*!40000 ALTER TABLE `wp_failed_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_failed_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_fed_menu` -- DROP TABLE IF EXISTS `wp_fed_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_fed_menu` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `menu_slug` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL, `menu` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `menu_order` bigint(20) NOT NULL, `menu_image_id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `show_user_profile` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `extra` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', `user_role` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `extended` text COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `menu_slug` (`menu_slug`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_fed_menu` -- LOCK TABLES `wp_fed_menu` WRITE; /*!40000 ALTER TABLE `wp_fed_menu` DISABLE KEYS */; INSERT INTO `wp_fed_menu` VALUES (1,'profile','Profile',3,'fa fa-user','Enable','no','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}',''); /*!40000 ALTER TABLE `wp_fed_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_fed_post` -- DROP TABLE IF EXISTS `wp_fed_post`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_fed_post` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `input_meta` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL, `label_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_order` bigint(20) NOT NULL, `is_required` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false', `input_type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `placeholder` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `class_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `id_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_step` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_min` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_max` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_row` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `is_tooltip` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'no', `tooltip_title` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `tooltip_body` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_value` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_role` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_location` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `extended` text COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `input_meta` (`input_meta`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_fed_post` -- LOCK TABLES `wp_fed_post` WRITE; /*!40000 ALTER TABLE `wp_fed_post` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_fed_post` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_fed_user_profile` -- DROP TABLE IF EXISTS `wp_fed_user_profile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_fed_user_profile` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `input_meta` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL, `label_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_order` bigint(20) NOT NULL, `show_register` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Disable', `show_dashboard` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Disable', `show_user_profile` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Enable', `is_required` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false', `input_type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `placeholder` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `class_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `id_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_step` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_min` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_max` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_row` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `is_tooltip` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'no', `tooltip_title` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `tooltip_body` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_value` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_role` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `input_location` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `extra` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', `menu` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'profile', `extended` text COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `input_meta` (`input_meta`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_fed_user_profile` -- LOCK TABLES `wp_fed_user_profile` WRITE; /*!40000 ALTER TABLE `wp_fed_user_profile` DISABLE KEYS */; INSERT INTO `wp_fed_user_profile` VALUES (1,'user_login','User Name',5,'Enable','Enable','Disable','true','single_line','User Name','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(2,'user_pass','Password',9,'Enable','Enable','Disable','true','password','Password','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(3,'confirmation_password','Confirmation Password',11,'Enable','Enable','Disable','true','password','Password','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(4,'user_email','Email Address',12,'Enable','Enable','Disable','true','email','Email Address','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(5,'user_nicename','Nicename',14,'Disable','Disable','Enable','false','single_line','Nicename','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(6,'display_name','Display Name',17,'Disable','Disable','Enable','false','single_line','Display Name','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(7,'first_name','First Name',20,'Disable','Disable','Enable','false','single_line','First Name','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(8,'last_name','Last Name',23,'Disable','Disable','Enable','false','single_line','Last Name','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(9,'nickname','Nickname',17,'Disable','Disable','Enable','false','single_line','Nickname','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(10,'description','Description',17,'Disable','Disable','Enable','false','multi_line','Description','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''),(11,'show_admin_bar_front','Show admin bar on front page',17,'Disable','Disable','Disable','false','checkbox','','','','','','','','no','','','','a:10:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";i:5;s:8:\"customer\";i:6;s:12:\"shop_manager\";i:7;s:6:\"broker\";i:8;s:15:\"commercial_lead\";i:9;s:8:\"supplier\";}','','no','profile',''); /*!40000 ALTER TABLE `wp_fed_user_profile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_addon_feed` -- DROP TABLE IF EXISTS `wp_gf_addon_feed`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_addon_feed` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `form_id` mediumint(8) unsigned NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `feed_order` mediumint(8) unsigned NOT NULL DEFAULT '0', `meta` longtext COLLATE utf8mb4_unicode_520_ci, `addon_slug` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `event_type` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `addon_form` (`addon_slug`,`form_id`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_addon_feed` -- LOCK TABLES `wp_gf_addon_feed` WRITE; /*!40000 ALTER TABLE `wp_gf_addon_feed` DISABLE KEYS */; INSERT INTO `wp_gf_addon_feed` VALUES (2,6,1,0,'{\"step_name\":\"Upload signed contract\",\"description\":\"\",\"step_type\":\"user_input\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"type\":\"select\",\"assignees\":[\"role|customer\",\"role|administrator\"],\"editable_fields\":[\"2\"],\"routing\":\"\",\"assignee_policy\":\"any\",\"highlight_editable_fields_enabled\":\"0\",\"highlight_editable_fields_class\":\"green-triangle\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"\",\"display_fields_mode\":\"all_fields\",\"default_status\":\"hidden\",\"note_mode\":\"not_required\",\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Upload signed contract\",\"assignee_notification_message\":\"A new entry requires your input: .http:\\/\\/localhost\\/workflow-inbox\\/<\\/a>\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"in_progress_notification_enabled\":\"0\",\"in_progress_notification_type\":\"select\",\"in_progress_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"in_progress_notification_from_name\":\"\",\"in_progress_notification_from_email\":\"{admin_email}\",\"in_progress_notification_reply_to\":\"\",\"in_progress_notification_bcc\":\"\",\"in_progress_notification_subject\":\"\",\"in_progress_notification_message\":\"Entry {entry_id} has been updated and remains in progress.\",\"in_progress_notification_disable_autoformat\":\"0\",\"complete_notification_enabled\":\"0\",\"complete_notification_type\":\"select\",\"complete_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"complete_notification_from_name\":\"\",\"complete_notification_from_email\":\"{admin_email}\",\"complete_notification_reply_to\":\"\",\"complete_notification_bcc\":\"\",\"complete_notification_subject\":\"\",\"complete_notification_message\":\"Entry {entry_id} has been updated completing the step.\",\"complete_notification_disable_autoformat\":\"0\",\"confirmation_messageEnable\":\"0\",\"confirmation_messageValue\":\"Thank you.\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"3\"}','gravityflow',NULL),(3,6,1,0,'{\"step_name\":\"Approve signed contract\",\"description\":\"\",\"step_type\":\"approval\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"type\":\"select\",\"assignees\":[\"role|broker\",\"role|administrator\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"any\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"Instructions: please review the values in the fields below and click on the Approve or Reject button\",\"display_fields_mode\":\"all_fields\",\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"\",\"assignee_notification_message\":\"A new entry\\u00a0{entry_id} is pending your approval. Please check your Workflow Inbox.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"rejection_notification_enabled\":\"1\",\"rejection_notification_type\":\"select\",\"rejection_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"rejection_notification_from_name\":\"\",\"rejection_notification_from_email\":\"{admin_email}\",\"rejection_notification_reply_to\":\"\",\"rejection_notification_bcc\":\"\",\"rejection_notification_subject\":\"Enter signed contract\",\"rejection_notification_message\":\"Your signed contract has been rejected please go to Entry {entry_id} has been rejected.\",\"rejection_notification_disable_autoformat\":\"0\",\"approval_notification_enabled\":\"1\",\"approval_notification_type\":\"select\",\"approval_notification_users\":[\"role|customer\"],\"approval_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"approval_notification_from_name\":\"\",\"approval_notification_from_email\":\"{admin_email}\",\"approval_notification_reply_to\":\"\",\"approval_notification_bcc\":\"\",\"approval_notification_subject\":\"\",\"approval_notification_message\":\"Entry {entry_id} has been approved\",\"approval_notification_disable_autoformat\":\"0\",\"revertEnable\":\"0\",\"revertValue\":\"2\",\"note_mode\":\"not_required\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"status_expiration\":\"rejected\",\"destination_expired\":\"next\",\"destination_rejected\":\"2\",\"destination_approved\":\"complete\"}','gravityflow',NULL),(4,7,1,0,'{\"step_name\":\"Approve installation info\",\"description\":\"\",\"step_type\":\"approval\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"schedule_date_field\":\"3\",\"type\":\"select\",\"assignees\":[\"role|broker\",\"role|administrator\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"any\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"Instructions: please review the values in the fields below and click on the Approve or Reject button\",\"display_fields_mode\":\"all_fields\",\"assignee_notification_enabled\":\"0\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"\",\"assignee_notification_message\":\"A new entry is pending your approval. Please check your Workflow Inbox.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"rejection_notification_enabled\":\"1\",\"rejection_notification_type\":\"select\",\"rejection_notification_users\":[\"role|supplier\"],\"rejection_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"rejection_notification_from_name\":\"\",\"rejection_notification_from_email\":\"{admin_email}\",\"rejection_notification_reply_to\":\"\",\"rejection_notification_bcc\":\"\",\"rejection_notification_subject\":\"Installation info has been rejected\",\"rejection_notification_message\":\"Entry {entry_id} has been rejected\",\"rejection_notification_disable_autoformat\":\"0\",\"approval_notification_enabled\":\"1\",\"approval_notification_type\":\"select\",\"approval_notification_users\":[\"role|supplier\"],\"approval_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"approval_notification_from_name\":\"\",\"approval_notification_from_email\":\"{admin_email}\",\"approval_notification_reply_to\":\"\",\"approval_notification_bcc\":\"\",\"approval_notification_subject\":\"Installation info has been approved\",\"approval_notification_message\":\"Entry {entry_id} has been approved\",\"approval_notification_disable_autoformat\":\"0\",\"revertEnable\":\"0\",\"revertValue\":\"7\",\"note_mode\":\"not_required\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"expiration_date_field\":\"3\",\"status_expiration\":\"rejected\",\"destination_expired\":\"next\",\"destination_rejected\":\"7\",\"destination_approved\":\"complete\"}','gravityflow',NULL),(5,5,1,0,'{\"step_name\":\"Approve configuration info\",\"description\":\"\",\"step_type\":\"approval\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"type\":\"select\",\"assignees\":[\"role|broker\",\"role|administrator\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"any\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"Instructions: please review the values in the fields below and click on the Approve or Reject button\",\"display_fields_mode\":\"all_fields\",\"assignee_notification_enabled\":\"0\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"\",\"assignee_notification_message\":\"A new entry is pending your approval. Please check your Workflow Inbox.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"rejection_notification_enabled\":\"0\",\"rejection_notification_type\":\"select\",\"rejection_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"rejection_notification_from_name\":\"\",\"rejection_notification_from_email\":\"{admin_email}\",\"rejection_notification_reply_to\":\"\",\"rejection_notification_bcc\":\"\",\"rejection_notification_subject\":\"\",\"rejection_notification_message\":\"Entry {entry_id} has been rejected\",\"rejection_notification_disable_autoformat\":\"0\",\"approval_notification_enabled\":\"0\",\"approval_notification_type\":\"select\",\"approval_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"approval_notification_from_name\":\"\",\"approval_notification_from_email\":\"{admin_email}\",\"approval_notification_reply_to\":\"\",\"approval_notification_bcc\":\"\",\"approval_notification_subject\":\"\",\"approval_notification_message\":\"Entry {entry_id} has been approved\",\"approval_notification_disable_autoformat\":\"0\",\"revertEnable\":\"0\",\"revertValue\":\"6\",\"note_mode\":\"not_required\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"status_expiration\":\"rejected\",\"destination_expired\":\"next\",\"destination_rejected\":\"6\",\"destination_approved\":\"complete\"}','gravityflow',NULL),(6,5,1,0,'{\"step_name\":\"Update configuration info\",\"description\":\"\",\"step_type\":\"user_input\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"type\":\"select\",\"assignees\":[\"role|customer\"],\"editable_fields\":[\"1\",\"2\"],\"routing\":\"\",\"assignee_policy\":\"any\",\"highlight_editable_fields_enabled\":\"0\",\"highlight_editable_fields_class\":\"green-triangle\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"\",\"display_fields_mode\":\"all_fields\",\"default_status\":\"hidden\",\"note_mode\":\"not_required\",\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Update configuration info\",\"assignee_notification_message\":\"Update configuration info for {entry}\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"in_progress_notification_enabled\":\"0\",\"in_progress_notification_type\":\"select\",\"in_progress_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"in_progress_notification_from_name\":\"\",\"in_progress_notification_from_email\":\"{admin_email}\",\"in_progress_notification_reply_to\":\"\",\"in_progress_notification_bcc\":\"\",\"in_progress_notification_subject\":\"\",\"in_progress_notification_message\":\"Entry {entry_id} has been updated and remains in progress.\",\"in_progress_notification_disable_autoformat\":\"0\",\"complete_notification_enabled\":\"0\",\"complete_notification_type\":\"select\",\"complete_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"complete_notification_from_name\":\"\",\"complete_notification_from_email\":\"{admin_email}\",\"complete_notification_reply_to\":\"\",\"complete_notification_bcc\":\"\",\"complete_notification_subject\":\"\",\"complete_notification_message\":\"Entry {entry_id} has been updated completing the step.\",\"complete_notification_disable_autoformat\":\"0\",\"confirmation_messageEnable\":\"0\",\"confirmation_messageValue\":\"Thank you.\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"5\"}','gravityflow',NULL),(7,7,1,0,'{\"step_name\":\"Update installation info\",\"description\":\"\",\"step_type\":\"user_input\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"schedule_date_field\":\"3\",\"type\":\"select\",\"assignees\":[\"role|customer\",\"role|administrator\"],\"editable_fields\":[\"1\",\"2\",\"3\"],\"routing\":\"\",\"assignee_policy\":\"any\",\"highlight_editable_fields_enabled\":\"0\",\"highlight_editable_fields_class\":\"green-triangle\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"\",\"display_fields_mode\":\"all_fields\",\"default_status\":\"hidden\",\"note_mode\":\"not_required\",\"assignee_notification_enabled\":\"0\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Please update installaton info\",\"assignee_notification_message\":\"A new entry requires your input.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"in_progress_notification_enabled\":\"0\",\"in_progress_notification_type\":\"select\",\"in_progress_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"in_progress_notification_from_name\":\"\",\"in_progress_notification_from_email\":\"{admin_email}\",\"in_progress_notification_reply_to\":\"\",\"in_progress_notification_bcc\":\"\",\"in_progress_notification_subject\":\"\",\"in_progress_notification_message\":\"Entry {entry_id} has been updated and remains in progress.\",\"in_progress_notification_disable_autoformat\":\"0\",\"complete_notification_enabled\":\"0\",\"complete_notification_type\":\"select\",\"complete_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"complete_notification_from_name\":\"\",\"complete_notification_from_email\":\"{admin_email}\",\"complete_notification_reply_to\":\"\",\"complete_notification_bcc\":\"\",\"complete_notification_subject\":\"\",\"complete_notification_message\":\"Entry {entry_id} has been updated completing the step.\",\"complete_notification_disable_autoformat\":\"0\",\"confirmation_messageEnable\":\"0\",\"confirmation_messageValue\":\"Thank you.\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"expiration_date_field\":\"3\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"4\"}','gravityflow',NULL),(8,2,1,0,'{\"step_name\":\"Enter installation info\",\"description\":\"\",\"step_type\":\"form_submission\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"type\":\"select\",\"assignees\":[\"role|customer\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"any\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"\",\"display_fields_mode\":\"all_fields\",\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"\",\"assignee_notification_message\":\"Please enter installation info: {workflow_form_submission_link}\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"target_form_id\":\"7\",\"submit_page\":\"383\",\"mappings\":\"\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"next\"}','gravityflow',NULL),(9,2,1,0,'{\"step_name\":\"Upload signed contract\",\"description\":\"\",\"step_type\":\"form_submission\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"type\":\"select\",\"assignees\":[\"role|broker\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"any\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"\",\"display_fields_mode\":\"all_fields\",\"assignee_notification_enabled\":\"0\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"\",\"assignee_notification_message\":\"Please submit the following form: {workflow_form_submission_link}\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"target_form_id\":\"6\",\"submit_page\":\"388\",\"mappings\":[{\"key\":\"\",\"value\":\"\",\"custom_key\":\"\",\"custom_value\":\"\"}],\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"next\"}','gravityflow',NULL),(10,2,1,0,'{\"step_name\":\"Add configuration info\",\"description\":\"\",\"step_type\":\"form_submission\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"type\":\"select\",\"assignees\":[\"role|customer\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"any\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"\",\"display_fields_mode\":\"all_fields\",\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"\",\"assignee_notification_message\":\"Please submit the following form: {workflow_form_submission_link}\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"target_form_id\":\"5\",\"submit_page\":\"386\",\"mappings\":\"\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"next\"}','gravityflow',NULL),(11,1,1,0,'{\"step_name\":\"Start First Process\",\"description\":\"\",\"step_type\":\"new_entry\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"1\",\"feed_condition_conditional_logic_object\":{\"conditionalLogic\":{\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"1\",\"operator\":\"is\",\"value\":\"0\"}]}},\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"server_type\":\"local\",\"target_form_id\":\"2\",\"mappings\":[{\"key\":\"4\",\"value\":\"3\",\"custom_key\":\"\",\"custom_value\":\"\"},{\"key\":\"2\",\"value\":\"4\",\"custom_key\":\"\",\"custom_value\":\"\"}],\"store_new_entry_idEnable\":\"0\",\"new_entry_id_field\":\"\",\"destination_complete\":\"complete\"}','gravityflow',NULL),(12,1,1,0,'{\"step_name\":\"Start second process\",\"description\":\"\",\"step_type\":\"new_entry\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"1\",\"feed_condition_conditional_logic_object\":{\"conditionalLogic\":{\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"1\",\"operator\":\"is\",\"value\":\"1\"}]}},\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"server_type\":\"local\",\"target_form_id\":\"8\",\"mappings\":[{\"key\":\"2\",\"value\":\"3\",\"custom_key\":\"\",\"custom_value\":\"\"}],\"store_new_entry_idEnable\":\"0\",\"new_entry_id_field\":\"\",\"destination_complete\":\"complete\"}','gravityflow',NULL),(13,8,1,0,'{\"step_name\":\"Enter installation info\",\"description\":\"\",\"step_type\":\"user_input\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"schedule_date_field\":\"12\",\"type\":\"select\",\"assignees\":[\"role|customer\"],\"editable_fields\":[\"10\",\"12\"],\"routing\":\"\",\"assignee_policy\":\"any\",\"highlight_editable_fields_enabled\":\"1\",\"highlight_editable_fields_class\":\"green-background\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"\",\"display_fields_mode\":\"all_fields\",\"default_status\":\"hidden\",\"note_mode\":\"not_required\",\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Enter installation info\",\"assignee_notification_message\":\"A new entry requires your input.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"in_progress_notification_enabled\":\"0\",\"in_progress_notification_type\":\"select\",\"in_progress_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"in_progress_notification_from_name\":\"\",\"in_progress_notification_from_email\":\"{admin_email}\",\"in_progress_notification_reply_to\":\"\",\"in_progress_notification_bcc\":\"\",\"in_progress_notification_subject\":\"\",\"in_progress_notification_message\":\"Entry {entry_id} has been updated and remains in progress.\",\"in_progress_notification_disable_autoformat\":\"0\",\"complete_notification_enabled\":\"0\",\"complete_notification_type\":\"select\",\"complete_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"complete_notification_from_name\":\"\",\"complete_notification_from_email\":\"{admin_email}\",\"complete_notification_reply_to\":\"\",\"complete_notification_bcc\":\"\",\"complete_notification_subject\":\"\",\"complete_notification_message\":\"Entry {entry_id} has been updated completing the step.\",\"complete_notification_disable_autoformat\":\"0\",\"confirmation_messageEnable\":\"0\",\"confirmation_messageValue\":\"Thank you.\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"expiration_date_field\":\"12\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"next\"}','gravityflow',NULL),(14,8,1,0,'{\"step_name\":\"Approve installation info\",\"description\":\"\",\"step_type\":\"approval\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"schedule_date_field\":\"12\",\"type\":\"select\",\"assignees\":[\"role|broker\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"any\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"Instructions: please review the values in the fields below and click on the Approve or Reject button\",\"display_fields_mode\":\"selected_fields\",\"display_fields_selected\":[\"10\",\"12\"],\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Approve installation info\",\"assignee_notification_message\":\"A new entry is pending your approval. Please check your Workflow Inbox.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"rejection_notification_enabled\":\"0\",\"rejection_notification_type\":\"select\",\"rejection_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"rejection_notification_from_name\":\"\",\"rejection_notification_from_email\":\"{admin_email}\",\"rejection_notification_reply_to\":\"\",\"rejection_notification_bcc\":\"\",\"rejection_notification_subject\":\"\",\"rejection_notification_message\":\"Entry {entry_id} has been rejected\",\"rejection_notification_disable_autoformat\":\"0\",\"approval_notification_enabled\":\"0\",\"approval_notification_type\":\"select\",\"approval_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"approval_notification_from_name\":\"\",\"approval_notification_from_email\":\"{admin_email}\",\"approval_notification_reply_to\":\"\",\"approval_notification_bcc\":\"\",\"approval_notification_subject\":\"\",\"approval_notification_message\":\"Entry {entry_id} has been approved\",\"approval_notification_disable_autoformat\":\"0\",\"revertEnable\":\"0\",\"revertValue\":\"13\",\"note_mode\":\"not_required\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"expiration_date_field\":\"12\",\"status_expiration\":\"rejected\",\"destination_expired\":\"next\",\"destination_rejected\":\"13\",\"destination_approved\":\"15\"}','gravityflow',NULL),(15,8,1,0,'{\"step_name\":\"Upload contract template\",\"description\":\"\",\"step_type\":\"user_input\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"schedule_date_field\":\"12\",\"type\":\"select\",\"assignees\":[\"role|broker\"],\"editable_fields\":[\"7\"],\"routing\":\"\",\"assignee_policy\":\"all\",\"highlight_editable_fields_enabled\":\"0\",\"highlight_editable_fields_class\":\"green-triangle\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"\",\"display_fields_mode\":\"selected_fields\",\"display_fields_selected\":[\"7\"],\"default_status\":\"hidden\",\"note_mode\":\"not_required\",\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Upload contract template\",\"assignee_notification_message\":\"A new entry requires your input.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"in_progress_notification_enabled\":\"0\",\"in_progress_notification_type\":\"select\",\"in_progress_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"in_progress_notification_from_name\":\"\",\"in_progress_notification_from_email\":\"{admin_email}\",\"in_progress_notification_reply_to\":\"\",\"in_progress_notification_bcc\":\"\",\"in_progress_notification_subject\":\"\",\"in_progress_notification_message\":\"Entry {entry_id} has been updated and remains in progress.\",\"in_progress_notification_disable_autoformat\":\"0\",\"complete_notification_enabled\":\"0\",\"complete_notification_type\":\"select\",\"complete_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"complete_notification_from_name\":\"\",\"complete_notification_from_email\":\"{admin_email}\",\"complete_notification_reply_to\":\"\",\"complete_notification_bcc\":\"\",\"complete_notification_subject\":\"\",\"complete_notification_message\":\"Entry {entry_id} has been updated completing the step.\",\"complete_notification_disable_autoformat\":\"0\",\"confirmation_messageEnable\":\"0\",\"confirmation_messageValue\":\"Thank you.\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"expiration_date_field\":\"12\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"16\"}','gravityflow',NULL),(16,8,1,0,'{\"step_name\":\"Upload signed contract\",\"description\":\"\",\"step_type\":\"user_input\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"schedule_date_field\":\"12\",\"type\":\"select\",\"assignees\":[\"role|customer\"],\"editable_fields\":[\"8\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"all\",\"highlight_editable_fields_enabled\":\"0\",\"highlight_editable_fields_class\":\"green-triangle\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"Instructions: please review the values in the fields below and click on the Approve or Reject button\",\"display_fields_mode\":\"selected_fields\",\"display_fields_selected\":[\"7\",\"8\"],\"default_status\":\"hidden\",\"note_mode\":\"not_required\",\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Upload signed contract\",\"assignee_notification_message\":\"A new entry is pending your approval. Please check your Workflow Inbox.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"1\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"1\",\"resend_assignee_email_repeatValue\":\"3\",\"in_progress_notification_enabled\":\"0\",\"in_progress_notification_type\":\"select\",\"in_progress_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"in_progress_notification_from_name\":\"\",\"in_progress_notification_from_email\":\"{admin_email}\",\"in_progress_notification_reply_to\":\"\",\"in_progress_notification_bcc\":\"\",\"in_progress_notification_subject\":\"\",\"in_progress_notification_message\":\"Entry {entry_id} has been updated and remains in progress.\",\"in_progress_notification_disable_autoformat\":\"0\",\"complete_notification_enabled\":\"0\",\"complete_notification_type\":\"select\",\"complete_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"complete_notification_from_name\":\"\",\"complete_notification_from_email\":\"{admin_email}\",\"complete_notification_reply_to\":\"\",\"complete_notification_bcc\":\"\",\"complete_notification_subject\":\"\",\"complete_notification_message\":\"Entry {entry_id} has been updated completing the step.\",\"complete_notification_disable_autoformat\":\"0\",\"confirmation_messageEnable\":\"0\",\"confirmation_messageValue\":\"Thank you.\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"expiration_date_field\":\"12\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"17\"}','gravityflow',NULL),(17,8,1,0,'{\"step_name\":\"Approve signed contract\",\"description\":\"\",\"step_type\":\"approval\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"schedule_date_field\":\"12\",\"type\":\"select\",\"assignees\":[\"role|broker\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"all\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"Instructions: please review the values in the fields below and click on the Approve or Reject button\",\"display_fields_mode\":\"selected_fields\",\"display_fields_selected\":[\"7\",\"8\"],\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Approve signed contract\",\"assignee_notification_message\":\"A new entry is pending your approval. Please check your Workflow Inbox.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"rejection_notification_enabled\":\"0\",\"rejection_notification_type\":\"select\",\"rejection_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"rejection_notification_from_name\":\"\",\"rejection_notification_from_email\":\"{admin_email}\",\"rejection_notification_reply_to\":\"\",\"rejection_notification_bcc\":\"\",\"rejection_notification_subject\":\"\",\"rejection_notification_message\":\"Entry {entry_id} has been rejected\",\"rejection_notification_disable_autoformat\":\"0\",\"approval_notification_enabled\":\"0\",\"approval_notification_type\":\"select\",\"approval_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"approval_notification_from_name\":\"\",\"approval_notification_from_email\":\"{admin_email}\",\"approval_notification_reply_to\":\"\",\"approval_notification_bcc\":\"\",\"approval_notification_subject\":\"\",\"approval_notification_message\":\"Entry {entry_id} has been approved\",\"approval_notification_disable_autoformat\":\"0\",\"revertEnable\":\"0\",\"revertValue\":\"13\",\"note_mode\":\"not_required\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"expiration_date_field\":\"12\",\"status_expiration\":\"rejected\",\"destination_expired\":\"next\",\"destination_rejected\":\"16\",\"destination_approved\":\"18\"}','gravityflow',NULL),(18,8,1,0,'{\"step_name\":\"Enter configuration info\",\"description\":\"\",\"step_type\":\"user_input\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"schedule_date_field\":\"12\",\"type\":\"select\",\"assignees\":[\"role|customer\"],\"editable_fields\":[\"4\",\"5\"],\"routing\":\"\",\"assignee_policy\":\"all\",\"highlight_editable_fields_enabled\":\"0\",\"highlight_editable_fields_class\":\"green-triangle\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"\",\"display_fields_mode\":\"selected_fields\",\"display_fields_selected\":[\"10\",\"12\"],\"default_status\":\"hidden\",\"note_mode\":\"not_required\",\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Enter installation info\",\"assignee_notification_message\":\"A new entry requires your input.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"in_progress_notification_enabled\":\"0\",\"in_progress_notification_type\":\"select\",\"in_progress_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"in_progress_notification_from_name\":\"\",\"in_progress_notification_from_email\":\"{admin_email}\",\"in_progress_notification_reply_to\":\"\",\"in_progress_notification_bcc\":\"\",\"in_progress_notification_subject\":\"\",\"in_progress_notification_message\":\"Entry {entry_id} has been updated and remains in progress.\",\"in_progress_notification_disable_autoformat\":\"0\",\"complete_notification_enabled\":\"0\",\"complete_notification_type\":\"select\",\"complete_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"complete_notification_from_name\":\"\",\"complete_notification_from_email\":\"{admin_email}\",\"complete_notification_reply_to\":\"\",\"complete_notification_bcc\":\"\",\"complete_notification_subject\":\"\",\"complete_notification_message\":\"Entry {entry_id} has been updated completing the step.\",\"complete_notification_disable_autoformat\":\"0\",\"confirmation_messageEnable\":\"0\",\"confirmation_messageValue\":\"Thank you.\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"expiration_date_field\":\"12\",\"status_expiration\":\"complete\",\"destination_expired\":\"next\",\"destination_complete\":\"19\"}','gravityflow',NULL),(19,8,1,0,'{\"step_name\":\"Approve configuration info\",\"description\":\"\",\"step_type\":\"approval\",\"step_highlight\":\"0\",\"step_highlight_type\":\"color\",\"step_highlight_color\":\"#dd3333\",\"feed_condition_conditional_logic\":\"0\",\"feed_condition_conditional_logic_object\":[],\"scheduled\":\"0\",\"schedule_type\":\"delay\",\"schedule_date\":\"\",\"schedule_delay_offset\":\"\",\"schedule_delay_unit\":\"hours\",\"schedule_date_field_offset\":\"0\",\"schedule_date_field_offset_unit\":\"hours\",\"schedule_date_field_before_after\":\"after\",\"schedule_date_field\":\"12\",\"type\":\"select\",\"assignees\":[\"role|broker\"],\"routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"assignee_policy\":\"all\",\"instructionsEnable\":\"0\",\"instructionsValue\":\"Instructions: please review the values in the fields below and click on the Approve or Reject button\",\"display_fields_mode\":\"selected_fields\",\"display_fields_selected\":[\"10\",\"12\"],\"assignee_notification_enabled\":\"1\",\"assignee_notification_from_name\":\"\",\"assignee_notification_from_email\":\"{admin_email}\",\"assignee_notification_reply_to\":\"\",\"assignee_notification_bcc\":\"\",\"assignee_notification_subject\":\"Approve installation info\",\"assignee_notification_message\":\"A new entry is pending your approval. Please check your Workflow Inbox.\",\"assignee_notification_disable_autoformat\":\"0\",\"resend_assignee_emailEnable\":\"0\",\"resend_assignee_emailValue\":\"7\",\"resend_assignee_email_repeatEnable\":\"0\",\"resend_assignee_email_repeatValue\":\"3\",\"rejection_notification_enabled\":\"0\",\"rejection_notification_type\":\"select\",\"rejection_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"rejection_notification_from_name\":\"\",\"rejection_notification_from_email\":\"{admin_email}\",\"rejection_notification_reply_to\":\"\",\"rejection_notification_bcc\":\"\",\"rejection_notification_subject\":\"\",\"rejection_notification_message\":\"Entry {entry_id} has been rejected\",\"rejection_notification_disable_autoformat\":\"0\",\"approval_notification_enabled\":\"0\",\"approval_notification_type\":\"select\",\"approval_notification_routing\":[{\"assignee\":\"user_id|2\",\"fieldId\":\"0\",\"operator\":\"is\",\"value\":\"\",\"type\":\"\"}],\"approval_notification_from_name\":\"\",\"approval_notification_from_email\":\"{admin_email}\",\"approval_notification_reply_to\":\"\",\"approval_notification_bcc\":\"\",\"approval_notification_subject\":\"\",\"approval_notification_message\":\"Entry {entry_id} has been approved\",\"approval_notification_disable_autoformat\":\"0\",\"revertEnable\":\"0\",\"revertValue\":\"13\",\"note_mode\":\"not_required\",\"expiration\":\"0\",\"expiration_type\":\"delay\",\"expiration_date\":\"\",\"expiration_delay_offset\":\"\",\"expiration_delay_unit\":\"hours\",\"expiration_date_field_offset\":\"0\",\"expiration_date_field_offset_unit\":\"hours\",\"expiration_date_field_before_after\":\"after\",\"expiration_date_field\":\"12\",\"status_expiration\":\"rejected\",\"destination_expired\":\"next\",\"destination_rejected\":\"18\",\"destination_approved\":\"complete\"}','gravityflow',NULL); /*!40000 ALTER TABLE `wp_gf_addon_feed` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_draft_submissions` -- DROP TABLE IF EXISTS `wp_gf_draft_submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_draft_submissions` ( `uuid` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `form_id` mediumint(8) unsigned NOT NULL, `date_created` datetime NOT NULL, `ip` varchar(39) COLLATE utf8mb4_unicode_520_ci NOT NULL, `source_url` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `submission` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`uuid`), KEY `form_id` (`form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_draft_submissions` -- LOCK TABLES `wp_gf_draft_submissions` WRITE; /*!40000 ALTER TABLE `wp_gf_draft_submissions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_gf_draft_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_entry` -- DROP TABLE IF EXISTS `wp_gf_entry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_entry` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `form_id` mediumint(8) unsigned NOT NULL, `post_id` bigint(20) unsigned DEFAULT NULL, `date_created` datetime NOT NULL, `date_updated` datetime DEFAULT NULL, `is_starred` tinyint(1) NOT NULL DEFAULT '0', `is_read` tinyint(1) NOT NULL DEFAULT '0', `ip` varchar(39) COLLATE utf8mb4_unicode_520_ci NOT NULL, `source_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_agent` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `currency` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `payment_date` datetime DEFAULT NULL, `payment_amount` decimal(19,2) DEFAULT NULL, `payment_method` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `transaction_id` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `is_fulfilled` tinyint(1) DEFAULT NULL, `created_by` bigint(20) unsigned DEFAULT NULL, `transaction_type` tinyint(1) DEFAULT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'active', PRIMARY KEY (`id`), KEY `form_id` (`form_id`), KEY `form_id_status` (`form_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_entry` -- LOCK TABLES `wp_gf_entry` WRITE; /*!40000 ALTER TABLE `wp_gf_entry` DISABLE KEYS */; INSERT INTO `wp_gf_entry` VALUES (1,1,NULL,'2018-06-28 00:12:49',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(2,1,NULL,'2018-06-28 00:17:54',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(3,2,NULL,'2018-06-28 00:17:54',NULL,0,1,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(4,7,NULL,'2018-06-28 00:22:45',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=3&workflow_hash=99be3f54b686ea476336a1efb5d33e57','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(5,5,NULL,'2018-06-28 00:33:16',NULL,0,0,'::1','http://localhost/upload-contract/?id=6&workflow_parent_entry_id=3&workflow_hash=c5891248e82e2337a999decf5b4afbea','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(6,1,NULL,'2018-06-28 00:40:10',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(7,2,NULL,'2018-06-28 00:40:10',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(8,7,NULL,'2018-06-28 00:41:34',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=7&workflow_hash=bd5e887dff2634cf5f06778927084fef','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(9,1,NULL,'2018-06-28 00:49:22',NULL,0,0,'::1','http://localhost/start-workflow-process/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(10,2,NULL,'2018-06-28 00:49:22',NULL,0,0,'::1','http://localhost/start-workflow-process/','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(11,5,NULL,'2018-06-28 01:01:11',NULL,0,0,'::1','http://localhost/enter-configuration-info/?id=5&workflow_parent_entry_id=3&workflow_hash=25e7e4275707471d1d8e405d899c77b4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(12,5,NULL,'2018-06-28 01:01:55',NULL,0,0,'::1','http://localhost/enter-configuration-info/?id=5&workflow_parent_entry_id=3&workflow_hash=25e7e4275707471d1d8e405d899c77b4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(13,1,NULL,'2018-06-28 01:17:00',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(14,2,NULL,'2018-06-28 01:17:00',NULL,0,1,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(15,7,NULL,'2018-06-28 01:17:33',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=14&workflow_hash=7f4049aef519e8b94c0a1c19cfc425bd','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(16,7,NULL,'2018-06-28 01:23:33',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=14&workflow_hash=7f4049aef519e8b94c0a1c19cfc425bd','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(17,7,NULL,'2018-06-28 01:29:16',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=14&workflow_hash=7f4049aef519e8b94c0a1c19cfc425bd','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(18,1,NULL,'2018-06-28 01:34:12',NULL,0,0,'::1','http://localhost/start-workflow-process/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(19,2,NULL,'2018-06-28 01:34:12',NULL,0,0,'::1','http://localhost/start-workflow-process/','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(20,7,NULL,'2018-06-28 01:34:28',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=19&workflow_hash=05b66e21564f1ca963fed403086f5081','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(21,7,NULL,'2018-06-28 01:40:13',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=19&workflow_hash=05b66e21564f1ca963fed403086f5081','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(22,7,NULL,'2018-06-28 01:45:10',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=19&workflow_hash=05b66e21564f1ca963fed403086f5081','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,'active'),(23,7,NULL,'2018-06-28 01:51:27',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=19&workflow_hash=05b66e21564f1ca963fed403086f5081','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,'active'),(24,7,NULL,'2018-06-28 01:52:41',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=19&workflow_hash=05b66e21564f1ca963fed403086f5081','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,'active'),(25,7,NULL,'2018-06-28 01:52:50',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=19&workflow_hash=05b66e21564f1ca963fed403086f5081','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,'active'),(26,7,NULL,'2018-06-28 01:54:05',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=19&workflow_hash=05b66e21564f1ca963fed403086f5081','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,'active'),(27,7,NULL,'2018-06-28 01:54:35',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=19&workflow_hash=05b66e21564f1ca963fed403086f5081','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,'active'),(28,7,NULL,'2018-06-28 01:58:20',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=19&workflow_hash=05b66e21564f1ca963fed403086f5081','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,'active'),(29,1,NULL,'2018-06-28 02:01:49',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(30,2,NULL,'2018-06-28 02:01:49',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(31,7,NULL,'2018-06-28 02:02:35',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=30&workflow_hash=07cc95f69d555afec9753e5c6f55b735','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,'active'),(32,6,NULL,'2018-06-28 02:08:24',NULL,0,0,'::1','http://localhost/upload-contract/?id=6&workflow_parent_entry_id=30&workflow_hash=bde4b42e41208483403508dd3aaf7b9f','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(33,5,NULL,'2018-06-28 02:10:26',NULL,0,0,'::1','http://localhost/enter-configuration-info/?id=5&workflow_parent_entry_id=30&workflow_hash=a091da694fccd1b7c7d90ef0bd905b8d','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(34,1,NULL,'2018-06-28 02:14:30',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(35,2,NULL,'2018-06-28 02:14:30',NULL,0,1,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(36,7,NULL,'2018-06-28 02:18:12',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=35&workflow_hash=e218de35c257201f966789d38b06648c','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(37,6,NULL,'2018-06-28 02:22:15',NULL,0,0,'::1','http://localhost/upload-contract/?id=6&workflow_parent_entry_id=35&workflow_hash=f57dd2b20f840b60f7e7363a69bbc3e0','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(38,5,NULL,'2018-06-28 02:24:44',NULL,0,0,'::1','http://localhost/enter-configuration-info/?id=5&workflow_parent_entry_id=35&workflow_hash=efed3010d1fb86c941a6939cdca7f897','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(39,1,NULL,'2018-06-28 03:00:19',NULL,0,1,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(40,2,NULL,'2018-06-28 03:00:19',NULL,0,1,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(41,7,NULL,'2018-06-28 03:00:52',NULL,0,0,'::1','http://localhost/enter-installation-info/?id=7&workflow_parent_entry_id=40&workflow_hash=e6d5359b3d7559fbc31d95d6a813f2a6','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(42,6,NULL,'2018-06-28 03:35:32',NULL,0,0,'::1','http://localhost/upload-contract/?id=6&workflow_parent_entry_id=40&workflow_hash=a8f3aa7f554fcef48ee8eac75a7ac141','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(43,1,NULL,'2018-06-28 07:17:47',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(44,8,NULL,'2018-06-28 07:17:47',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(45,1,NULL,'2018-06-28 07:21:44',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(46,2,NULL,'2018-06-28 07:21:44',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(47,1,NULL,'2018-06-28 07:21:50',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(48,2,NULL,'2018-06-28 07:21:50',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(49,1,NULL,'2018-06-28 07:22:48',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(50,8,NULL,'2018-06-28 07:22:48',NULL,0,0,'::1','http://localhost/?gf_page=preview&id=1','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(51,1,NULL,'2018-06-28 11:39:03',NULL,0,0,'::1','http://localhost/start-workflow-process/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(52,8,NULL,'2018-06-28 11:39:03',NULL,0,0,'::1','http://localhost/start-workflow-process/','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'),(53,1,NULL,'2018-06-28 11:42:03',NULL,0,0,'::1','http://localhost/start-workflow-process/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'active'),(54,2,NULL,'2018-06-28 11:42:03',NULL,0,0,'::1','http://localhost/start-workflow-process/','API','USD',NULL,NULL,NULL,'',NULL,NULL,1,NULL,'active'); /*!40000 ALTER TABLE `wp_gf_entry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_entry_meta` -- DROP TABLE IF EXISTS `wp_gf_entry_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_entry_meta` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `form_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `entry_id` bigint(20) unsigned NOT NULL, `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`id`), KEY `meta_key` (`meta_key`(191)), KEY `entry_id` (`entry_id`), KEY `meta_value` (`meta_value`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=1003 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_entry_meta` -- LOCK TABLES `wp_gf_entry_meta` WRITE; /*!40000 ALTER TABLE `wp_gf_entry_meta` DISABLE KEYS */; INSERT INTO `wp_gf_entry_meta` VALUES (1,1,1,'1','0'),(2,1,1,'workflow_final_status','complete'),(4,1,1,'workflow_timestamp','1530144769'),(5,1,1,'gravityflow_is_fulfilled','1'),(6,1,1,'workflow_step_11_timestamp','1530144769'),(7,1,1,'workflow_step_status_11','complete'),(8,1,1,'workflow_step_status_11_timestamp','1530144769'),(9,1,2,'3','1'),(10,1,2,'4','1'),(11,1,2,'1','0'),(12,1,2,'workflow_final_status','complete'),(14,1,2,'workflow_timestamp','1530145074'),(15,1,2,'gravityflow_is_fulfilled','1'),(16,1,2,'workflow_step_11_timestamp','1530145074'),(17,1,2,'workflow_step_status_11','complete'),(18,1,2,'workflow_step_status_11_timestamp','1530145074'),(19,2,3,'4','1'),(21,2,3,'workflow_final_status','cancelled'),(22,2,3,'gravityflow_is_fulfilled','1'),(23,2,3,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(25,2,3,'workflow_step_8_timestamp','1530145074'),(26,2,3,'workflow_step_status_8','complete'),(27,2,3,'workflow_step_status_8_timestamp','1530145365'),(32,7,4,'1.1','sdfcsvfsdf, fdfvds'),(33,7,4,'1.2','fdfvds'),(34,7,4,'1.4','sdfsfsfc'),(35,7,4,'1.5','323232'),(36,7,4,'1.6','Bangladesh'),(37,7,4,'2','(222) 222-2222'),(38,7,4,'3','2018-06-06'),(39,7,4,'workflow_final_status','cancelled'),(41,7,4,'workflow_timestamp','1530147687'),(42,7,4,'gravityflow_is_fulfilled','1'),(43,7,4,'workflow_step_4_timestamp','1530147687'),(44,7,4,'workflow_step_status_4','pending'),(45,7,4,'workflow_step_status_4_timestamp','1530147687'),(48,2,3,'workflow_step_9_timestamp','1530145365'),(49,2,3,'workflow_step_status_9','complete'),(50,2,3,'workflow_step_status_9_timestamp','1530145996'),(55,5,5,'1.1','sdfcsvfsdf, fdfvds'),(56,5,5,'1.2','fdfvds'),(57,5,5,'1.4','sdfsfsfc'),(58,5,5,'1.5','323232'),(59,5,5,'1.6','Bangladesh'),(60,5,5,'2','(222) 222-2222'),(61,5,5,'workflow_final_status','approved'),(63,5,5,'workflow_timestamp','1530145996'),(64,5,5,'gravityflow_is_fulfilled','1'),(65,5,5,'workflow_step_5_timestamp','1530145996'),(66,5,5,'workflow_step_status_5','approved'),(67,5,5,'workflow_step_status_5_timestamp','1530146181'),(70,2,3,'workflow_step_10_timestamp','1530145996'),(71,2,3,'workflow_step_status_10','pending'),(72,2,3,'workflow_step_status_10_timestamp','1530145996'),(76,5,5,'workflow_current_status_timestamp','1530146181'),(77,7,4,'workflow_current_status','approved'),(78,7,4,'workflow_current_status_timestamp','1530146201'),(79,7,4,'workflow_step_7_timestamp','1530146201'),(80,7,4,'workflow_step_status_7','complete'),(81,7,4,'workflow_step_status_7_timestamp','1530147687'),(84,1,6,'3','1'),(85,1,6,'4','2'),(86,1,6,'1','0'),(87,1,6,'workflow_final_status','complete'),(89,1,6,'workflow_timestamp','1530146410'),(90,1,6,'gravityflow_is_fulfilled','1'),(91,1,6,'workflow_step_11_timestamp','1530146410'),(92,1,6,'workflow_step_status_11','complete'),(93,1,6,'workflow_step_status_11_timestamp','1530146410'),(94,2,7,'4','1'),(96,2,7,'workflow_final_status','cancelled'),(97,2,7,'gravityflow_is_fulfilled','1'),(98,2,7,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(100,2,7,'workflow_step_8_timestamp','1530146410'),(101,2,7,'workflow_step_status_8','complete'),(102,2,7,'workflow_step_status_8_timestamp','1530146494'),(107,7,8,'1.1','sdfcsvfsdf, fdfvds'),(108,7,8,'1.2','fdfvds'),(109,7,8,'1.4','sdfsfsfc'),(110,7,8,'1.5','323232'),(111,7,8,'1.6','Bangladesh'),(112,7,8,'2','(222) 222-2222'),(113,7,8,'3','2018-06-06'),(114,7,8,'workflow_final_status','cancelled'),(116,7,8,'workflow_timestamp','1530147702'),(117,7,8,'gravityflow_is_fulfilled','1'),(118,7,8,'workflow_step_4_timestamp','1530147702'),(119,7,8,'workflow_step_status_4','pending'),(120,7,8,'workflow_step_status_4_timestamp','1530147702'),(123,2,7,'workflow_step_9_timestamp','1530146494'),(124,2,7,'workflow_step_status_9','pending'),(125,2,7,'workflow_step_status_9_timestamp','1530146494'),(130,1,9,'3','1'),(131,1,9,'4','2'),(132,1,9,'1','0'),(133,1,9,'workflow_final_status','complete'),(135,1,9,'workflow_timestamp','1530146962'),(136,1,9,'workflow_parent_entry_id',''),(137,1,9,'workflow_parent_entry_hash',''),(138,1,9,'gravityflow_is_fulfilled','1'),(139,1,9,'workflow_step_11_timestamp','1530146962'),(140,1,9,'workflow_step_status_11','complete'),(141,1,9,'workflow_step_status_11_timestamp','1530146962'),(142,2,10,'4','1'),(144,2,10,'workflow_final_status','cancelled'),(145,2,10,'gravityflow_is_fulfilled','1'),(146,2,10,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(148,2,10,'workflow_step_8_timestamp','1530146962'),(149,2,10,'workflow_step_status_8','pending'),(150,2,10,'workflow_step_status_8_timestamp','1530146962'),(155,7,8,'workflow_current_status','approved'),(156,7,8,'workflow_current_status_timestamp','1530147623'),(157,7,8,'workflow_step_7_timestamp','1530147623'),(158,7,8,'workflow_step_status_7','complete'),(159,7,8,'workflow_step_status_7_timestamp','1530147702'),(162,5,11,'1.1','sdfcsvfsdf, fdfvds'),(163,5,11,'1.2','fdfvds'),(164,5,11,'1.4','sdfsfsfc'),(165,5,11,'1.5','323232'),(166,5,11,'1.6','Bangladesh'),(167,5,11,'2','(222) 222-2222'),(168,5,11,'workflow_final_status','cancelled'),(170,5,11,'workflow_timestamp','1530147671'),(171,5,11,'workflow_parent_entry_id','3'),(172,5,11,'workflow_parent_entry_hash','25e7e4275707471d1d8e405d899c77b4'),(173,5,11,'gravityflow_is_fulfilled','1'),(174,5,11,'workflow_step_5_timestamp','1530147671'),(175,5,11,'workflow_step_status_5','pending'),(176,5,11,'workflow_step_status_5_timestamp','1530147671'),(179,7,4,'workflow_parent_entry_id','0'),(180,7,4,'workflow_parent_entry_hash','0'),(183,7,8,'workflow_parent_entry_id','0'),(184,7,8,'workflow_parent_entry_hash','0'),(187,5,12,'1.1','sdfcsvfsdf, fdfvds'),(188,5,12,'1.2','fdfvds'),(189,5,12,'1.4','sdfsfsfc'),(190,5,12,'1.5','323232'),(191,5,12,'1.6','Bangladesh'),(192,5,12,'2','(222) 222-2222'),(193,5,12,'workflow_final_status','cancelled'),(195,5,12,'workflow_timestamp','1530147715'),(196,5,12,'workflow_parent_entry_id','3'),(197,5,12,'workflow_parent_entry_hash','25e7e4275707471d1d8e405d899c77b4'),(198,5,12,'gravityflow_is_fulfilled','1'),(199,5,12,'workflow_step_5_timestamp','1530147715'),(200,5,12,'workflow_step_status_5','pending'),(201,5,12,'workflow_step_status_5_timestamp','1530147715'),(204,1,13,'3','1'),(205,1,13,'4','2'),(206,1,13,'1','0'),(207,1,13,'workflow_final_status','complete'),(209,1,13,'workflow_timestamp','1530148620'),(210,1,13,'workflow_parent_entry_id',''),(211,1,13,'workflow_parent_entry_hash',''),(212,1,13,'gravityflow_is_fulfilled','1'),(213,1,13,'workflow_step_11_timestamp','1530148620'),(214,1,13,'workflow_step_status_11','complete'),(215,1,13,'workflow_step_status_11_timestamp','1530148623'),(216,2,14,'4','1'),(217,2,14,'workflow_parent_entry_id','13'),(218,2,14,'workflow_final_status','cancelled'),(219,2,14,'gravityflow_is_fulfilled','1'),(220,2,14,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(222,2,14,'workflow_step_8_timestamp','1530148620'),(223,2,14,'workflow_step_status_8','pending'),(224,2,14,'workflow_step_status_8_timestamp','1530148620'),(229,7,15,'1.1','sdfcsvfsdf, fdfvds'),(230,7,15,'1.2','fdfvds'),(231,7,15,'1.4','sdfsfsfc'),(232,7,15,'1.5','323232'),(233,7,15,'1.6','Bangladesh'),(234,7,15,'2','(222) 222-2222'),(235,7,15,'workflow_final_status','approved'),(237,7,15,'workflow_timestamp','1530148653'),(238,7,15,'workflow_parent_entry_id','14'),(239,7,15,'workflow_parent_entry_hash','7f4049aef519e8b94c0a1c19cfc425bd'),(240,7,15,'gravityflow_is_fulfilled','1'),(241,7,15,'workflow_step_4_timestamp','1530148655'),(242,7,15,'workflow_step_status_4','approved'),(243,7,15,'workflow_step_status_4_timestamp','1530148779'),(249,7,15,'workflow_current_status_timestamp','1530148779'),(250,7,16,'1.1','sdfcsvfsdf, fdfvds'),(251,7,16,'1.2','fdfvds'),(252,7,16,'1.4','sdfsfsfc'),(253,7,16,'1.5','323232'),(254,7,16,'1.6','Bangladesh'),(255,7,16,'2','(222) 222-2222'),(256,7,16,'3','2018-06-06'),(257,7,16,'workflow_final_status','approved'),(259,7,16,'workflow_timestamp','1530149013'),(260,7,16,'workflow_parent_entry_id','14'),(261,7,16,'workflow_parent_entry_hash','7f4049aef519e8b94c0a1c19cfc425bd'),(262,7,16,'gravityflow_is_fulfilled','1'),(263,7,16,'workflow_step_4_timestamp','1530149015'),(264,7,16,'workflow_step_status_4','approved'),(265,7,16,'workflow_step_status_4_timestamp','1530149071'),(271,7,16,'workflow_current_status_timestamp','1530149071'),(272,7,17,'1.1','sdfcsvfsdf, fdfvds'),(273,7,17,'1.2','fdfvds'),(274,7,17,'1.4','sdfsfsfc'),(275,7,17,'1.5','323232'),(276,7,17,'1.6','Bangladesh'),(277,7,17,'2','(222) 222-2222'),(278,7,17,'workflow_final_status','approved'),(280,7,17,'workflow_timestamp','1530149356'),(281,7,17,'workflow_parent_entry_id','14'),(282,7,17,'workflow_parent_entry_hash','7f4049aef519e8b94c0a1c19cfc425bd'),(283,7,17,'gravityflow_is_fulfilled','1'),(284,7,17,'workflow_step_4_timestamp','1530149358'),(285,7,17,'workflow_step_status_4','approved'),(286,7,17,'workflow_step_status_4_timestamp','1530149419'),(292,7,17,'workflow_current_status_timestamp','1530149419'),(293,1,18,'3','1'),(294,1,18,'4','2'),(295,1,18,'1','0'),(296,1,18,'workflow_final_status','complete'),(298,1,18,'workflow_timestamp','1530149652'),(299,1,18,'workflow_parent_entry_id',''),(300,1,18,'workflow_parent_entry_hash',''),(301,1,18,'gravityflow_is_fulfilled','1'),(302,1,18,'workflow_step_11_timestamp','1530149652'),(303,1,18,'workflow_step_status_11','complete'),(304,1,18,'workflow_step_status_11_timestamp','1530149652'),(305,2,19,'4','1'),(306,2,19,'workflow_parent_entry_id','18'),(307,2,19,'workflow_final_status','cancelled'),(308,2,19,'gravityflow_is_fulfilled','1'),(309,2,19,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(311,2,19,'workflow_step_8_timestamp','1530149652'),(312,2,19,'workflow_step_status_8','pending'),(313,2,19,'workflow_step_status_8_timestamp','1530149652'),(316,7,20,'1.1','sdfcsvfsdf, fdfvds'),(317,7,20,'1.2','fdfvds'),(318,7,20,'1.4','sdfsfsfc'),(319,7,20,'1.5','323232'),(320,7,20,'1.6','Bangladesh'),(321,7,20,'2','(222) 222-2222'),(322,7,20,'3','2018-06-12'),(323,7,20,'workflow_final_status','approved'),(325,7,20,'workflow_timestamp','1530149668'),(326,7,20,'workflow_parent_entry_id','19'),(327,7,20,'workflow_parent_entry_hash','05b66e21564f1ca963fed403086f5081'),(328,7,20,'gravityflow_is_fulfilled','1'),(329,7,20,'workflow_step_4_timestamp','1530149670'),(330,7,20,'workflow_step_status_4','approved'),(331,7,20,'workflow_step_status_4_timestamp','1530149695'),(337,7,20,'workflow_current_status_timestamp','1530149695'),(338,7,21,'1.1','sdfcsvfsdf, fdfvds'),(339,7,21,'1.2','fdfvds'),(340,7,21,'1.4','sdfsfsfc'),(341,7,21,'1.5','323232'),(342,7,21,'1.6','Bangladesh'),(343,7,21,'2','(222) 222-2222'),(344,7,21,'workflow_final_status','approved'),(346,7,21,'workflow_timestamp','1530150013'),(347,7,21,'workflow_parent_entry_id','19'),(348,7,21,'workflow_parent_entry_hash','05b66e21564f1ca963fed403086f5081'),(349,7,21,'gravityflow_is_fulfilled','1'),(350,7,21,'workflow_step_4_timestamp','1530150015'),(351,7,21,'workflow_step_status_4','approved'),(352,7,21,'workflow_step_status_4_timestamp','1530150054'),(358,7,21,'workflow_current_status_timestamp','1530150054'),(359,7,22,'1.1','sdfcsvfsdf, fdfvds'),(360,7,22,'1.2','fdfvds'),(361,7,22,'1.4','sdfsfsfc'),(362,7,22,'1.5','323232'),(363,7,22,'1.6','Bangladesh'),(364,7,22,'2','(222) 222-2222'),(365,7,22,'workflow_final_status','approved'),(367,7,22,'workflow_timestamp','1530150310'),(368,7,22,'workflow_parent_entry_id','19'),(369,7,22,'workflow_parent_entry_hash','05b66e21564f1ca963fed403086f5081'),(370,7,22,'gravityflow_is_fulfilled','1'),(371,7,22,'workflow_step_4_timestamp','1530150312'),(372,7,22,'workflow_step_status_4','approved'),(373,7,22,'workflow_step_status_4_timestamp','1530150577'),(379,7,22,'workflow_current_status_timestamp','1530150577'),(380,7,23,'1.1','sdfcsvfsdf, fdfvds'),(381,7,23,'1.2','fdfvds'),(382,7,23,'1.4','sdfsfsfc'),(383,7,23,'1.5','323232'),(384,7,23,'1.6','Bangladesh'),(385,7,23,'2','(222) 222-2222'),(386,7,23,'3','2018-06-06'),(387,7,23,'workflow_final_status','approved'),(389,7,23,'workflow_timestamp','1530150687'),(390,7,23,'workflow_parent_entry_id','19'),(391,7,23,'workflow_parent_entry_hash','05b66e21564f1ca963fed403086f5081'),(392,7,23,'gravityflow_is_fulfilled','1'),(393,7,23,'workflow_step_4_timestamp','1530150689'),(394,7,23,'workflow_step_status_4','approved'),(395,7,23,'workflow_step_status_4_timestamp','1530150710'),(401,7,23,'workflow_current_status_timestamp','1530150710'),(402,7,24,'1.1','sdfcsvfsdf, fdfvds'),(403,7,24,'1.2','fdfvds'),(404,7,24,'1.4','sdfsfsfc'),(405,7,24,'1.5','323232'),(406,7,24,'1.6','Bangladesh'),(407,7,24,'2','(222) 222-2222'),(408,7,24,'3','2018-06-06'),(409,7,24,'workflow_final_status','approved'),(411,7,24,'workflow_timestamp','1530150761'),(412,7,24,'workflow_parent_entry_id','19'),(413,7,24,'workflow_parent_entry_hash','05b66e21564f1ca963fed403086f5081'),(414,7,24,'gravityflow_is_fulfilled','1'),(415,7,24,'workflow_step_4_timestamp','1530150763'),(416,7,24,'workflow_step_status_4','approved'),(417,7,24,'workflow_step_status_4_timestamp','1530150784'),(422,7,25,'1.1','sdfcsvfsdf, fdfvds'),(423,7,25,'1.2','fdfvds'),(424,7,25,'1.4','sdfsfsfc'),(425,7,25,'1.5','323232'),(426,7,25,'1.6','Bangladesh'),(427,7,25,'2','(222) 222-2222'),(428,7,25,'workflow_final_status','approved'),(430,7,25,'workflow_timestamp','1530150770'),(431,7,25,'workflow_parent_entry_id','19'),(432,7,25,'workflow_parent_entry_hash','05b66e21564f1ca963fed403086f5081'),(433,7,25,'gravityflow_is_fulfilled','1'),(434,7,25,'workflow_step_4_timestamp','1530150772'),(435,7,25,'workflow_step_status_4','approved'),(436,7,25,'workflow_step_status_4_timestamp','1530150813'),(442,7,24,'workflow_current_status_timestamp','1530150784'),(444,7,25,'workflow_current_status_timestamp','1530150813'),(445,7,26,'1.1','sdfcsvfsdf, fdfvds'),(446,7,26,'1.2','fdfvds'),(447,7,26,'1.4','sdfsfsfc'),(448,7,26,'1.5','323232'),(449,7,26,'1.6','Bangladesh'),(450,7,26,'2','(222) 222-2222'),(451,7,26,'workflow_final_status','approved'),(453,7,26,'workflow_timestamp','1530150845'),(454,7,26,'workflow_parent_entry_id','19'),(455,7,26,'workflow_parent_entry_hash','05b66e21564f1ca963fed403086f5081'),(456,7,26,'gravityflow_is_fulfilled','1'),(457,7,26,'workflow_step_4_timestamp','1530150846'),(458,7,26,'workflow_step_status_4','approved'),(459,7,26,'workflow_step_status_4_timestamp','1530150853'),(465,7,26,'workflow_current_status_timestamp','1530150853'),(466,7,27,'1.1','sdfcsvfsdf, fdfvds'),(467,7,27,'1.2','fdfvds'),(468,7,27,'1.4','sdfsfsfc'),(469,7,27,'1.5','323232'),(470,7,27,'1.6','Bangladesh'),(471,7,27,'2','(222) 222-2222'),(472,7,27,'3','2018-06-06'),(473,7,27,'workflow_final_status','approved'),(475,7,27,'workflow_timestamp','1530150875'),(476,7,27,'workflow_parent_entry_id','19'),(477,7,27,'workflow_parent_entry_hash','05b66e21564f1ca963fed403086f5081'),(478,7,27,'gravityflow_is_fulfilled','1'),(479,7,27,'workflow_step_4_timestamp','1530150878'),(480,7,27,'workflow_step_status_4','approved'),(481,7,27,'workflow_step_status_4_timestamp','1530150886'),(487,7,27,'workflow_current_status_timestamp','1530150886'),(488,7,28,'1.1','sdfcsvfsdf, fdfvds'),(489,7,28,'1.2','fdfvds'),(490,7,28,'1.4','sdfsfsfc'),(491,7,28,'1.5','323232'),(492,7,28,'1.6','Bangladesh'),(493,7,28,'2','(222) 222-2222'),(494,7,28,'workflow_final_status','approved'),(496,7,28,'workflow_timestamp','1530151100'),(497,7,28,'workflow_parent_entry_id','19'),(498,7,28,'workflow_parent_entry_hash','05b66e21564f1ca963fed403086f5081'),(499,7,28,'gravityflow_is_fulfilled','1'),(500,7,28,'workflow_step_4_timestamp','1530151102'),(501,7,28,'workflow_step_status_4','approved'),(502,7,28,'workflow_step_status_4_timestamp','1530151211'),(508,7,28,'workflow_current_status_timestamp','1530151211'),(509,1,29,'3','1'),(510,1,29,'4','2'),(511,1,29,'1','0'),(512,1,29,'workflow_final_status','complete'),(514,1,29,'workflow_timestamp','1530151309'),(515,1,29,'workflow_parent_entry_id',''),(516,1,29,'workflow_parent_entry_hash',''),(517,1,29,'gravityflow_is_fulfilled','1'),(518,1,29,'workflow_step_11_timestamp','1530151309'),(519,1,29,'workflow_step_status_11','complete'),(520,1,29,'workflow_step_status_11_timestamp','1530151311'),(521,2,30,'4','1'),(522,2,30,'workflow_parent_entry_id','29'),(523,2,30,'workflow_final_status','complete'),(524,2,30,'gravityflow_is_fulfilled','1'),(525,2,30,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(527,2,30,'workflow_step_8_timestamp','1530151309'),(528,2,30,'workflow_step_status_8','complete'),(529,2,30,'workflow_step_status_8_timestamp','1530151389'),(532,7,31,'1.1','sdfcsvfsdf, fdfvds'),(533,7,31,'1.2','fdfvds'),(534,7,31,'1.4','sdfsfsfc'),(535,7,31,'1.5','323232'),(536,7,31,'1.6','Bangladesh'),(537,7,31,'2','(222) 222-2222'),(538,7,31,'workflow_final_status','approved'),(540,7,31,'workflow_timestamp','1530151355'),(541,7,31,'workflow_parent_entry_id','30'),(542,7,31,'workflow_parent_entry_hash','07cc95f69d555afec9753e5c6f55b735'),(543,7,31,'gravityflow_is_fulfilled','1'),(544,7,31,'workflow_step_4_timestamp','1530151358'),(545,7,31,'workflow_step_status_4','approved'),(546,7,31,'workflow_step_status_4_timestamp','1530151389'),(552,7,31,'workflow_current_status_timestamp','1530151389'),(553,2,30,'workflow_step_9_timestamp','1530151389'),(554,2,30,'workflow_step_status_9','complete'),(555,2,30,'workflow_step_status_9_timestamp','1530151767'),(558,6,32,'1','http://localhost/wp-content/uploads/gravity_forms/6-ac01225c6ae7b85e4fb3f04639c0c19f/2018/06/DashboardHomepage.pdf'),(559,6,32,'workflow_final_status','approved'),(561,6,32,'workflow_timestamp','1530151757'),(562,6,32,'workflow_parent_entry_id','30'),(563,6,32,'workflow_parent_entry_hash','bde4b42e41208483403508dd3aaf7b9f'),(564,6,32,'gravityflow_is_fulfilled','1'),(565,6,32,'workflow_step_2_timestamp','1530151706'),(566,6,32,'workflow_step_status_2','complete'),(567,6,32,'workflow_step_status_2_timestamp','1530151757'),(572,6,32,'2','http://localhost/wp-content/uploads/gravity_forms/6-ac01225c6ae7b85e4fb3f04639c0c19f/2018/06/Installation-scheduling.pdf'),(573,6,32,'workflow_step_3_timestamp','1530151757'),(574,6,32,'workflow_step_status_3','approved'),(575,6,32,'workflow_step_status_3_timestamp','1530151767'),(581,6,32,'workflow_current_status_timestamp','1530151767'),(582,2,30,'workflow_step_10_timestamp','1530151767'),(583,2,30,'workflow_step_status_10','complete'),(584,2,30,'workflow_step_status_10_timestamp','1530151841'),(587,5,33,'1.1','sdfcsvfsdf, fdfvds'),(588,5,33,'1.2','fdfvds'),(589,5,33,'1.4','sdfsfsfc'),(590,5,33,'1.5','323232'),(591,5,33,'1.6','Bangladesh'),(592,5,33,'2','(222) 222-2222'),(593,5,33,'workflow_final_status','approved'),(595,5,33,'workflow_timestamp','1530151826'),(596,5,33,'workflow_parent_entry_id','30'),(597,5,33,'workflow_parent_entry_hash','a091da694fccd1b7c7d90ef0bd905b8d'),(598,5,33,'gravityflow_is_fulfilled','1'),(599,5,33,'workflow_step_5_timestamp','1530151826'),(600,5,33,'workflow_step_status_5','approved'),(601,5,33,'workflow_step_status_5_timestamp','1530151841'),(607,5,33,'workflow_current_status_timestamp','1530151841'),(608,1,34,'3','1'),(609,1,34,'4','2'),(610,1,34,'1','0'),(611,1,34,'workflow_final_status','complete'),(613,1,34,'workflow_timestamp','1530152070'),(614,1,34,'workflow_parent_entry_id',''),(615,1,34,'workflow_parent_entry_hash',''),(616,1,34,'gravityflow_is_fulfilled','1'),(617,1,34,'workflow_step_11_timestamp','1530152070'),(618,1,34,'workflow_step_status_11','complete'),(619,1,34,'workflow_step_status_11_timestamp','1530152072'),(620,2,35,'4','1'),(621,2,35,'workflow_parent_entry_id','34'),(622,2,35,'workflow_final_status','complete'),(623,2,35,'gravityflow_is_fulfilled','1'),(624,2,35,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(626,2,35,'workflow_step_8_timestamp','1530152070'),(627,2,35,'workflow_step_status_8','complete'),(628,2,35,'workflow_step_status_8_timestamp','1530152333'),(631,7,36,'1.1','sdfcsvfsdf, fdfvds'),(632,7,36,'1.2','fdfvds'),(633,7,36,'1.4','sdfsfsfc'),(634,7,36,'1.5','323232'),(635,7,36,'1.6','Bangladesh'),(636,7,36,'2','(222) 222-2222'),(637,7,36,'workflow_final_status','approved'),(639,7,36,'workflow_timestamp','1530152292'),(640,7,36,'workflow_parent_entry_id','35'),(641,7,36,'workflow_parent_entry_hash','e218de35c257201f966789d38b06648c'),(642,7,36,'gravityflow_is_fulfilled','1'),(643,7,36,'workflow_step_4_timestamp','1530152294'),(644,7,36,'workflow_step_status_4','approved'),(645,7,36,'workflow_step_status_4_timestamp','1530152333'),(651,7,36,'workflow_current_status_timestamp','1530152333'),(652,2,35,'workflow_step_9_timestamp','1530152333'),(653,2,35,'workflow_step_status_9','complete'),(654,2,35,'workflow_step_status_9_timestamp','1530152641'),(659,6,37,'1','http://localhost/wp-content/uploads/gravity_forms/6-ac01225c6ae7b85e4fb3f04639c0c19f/2018/06/DocumentManagement.pdf'),(660,6,37,'workflow_final_status','approved'),(662,6,37,'workflow_timestamp','1530152600'),(663,6,37,'workflow_parent_entry_id','35'),(664,6,37,'workflow_parent_entry_hash','f57dd2b20f840b60f7e7363a69bbc3e0'),(665,6,37,'gravityflow_is_fulfilled','1'),(666,6,37,'workflow_step_2_timestamp','1530152537'),(667,6,37,'workflow_step_status_2','complete'),(668,6,37,'workflow_step_status_2_timestamp','1530152600'),(673,6,37,'2','http://localhost/wp-content/uploads/gravity_forms/6-ac01225c6ae7b85e4fb3f04639c0c19f/2018/06/UserCompanyStructure.pdf'),(674,6,37,'workflow_step_3_timestamp','1530152600'),(675,6,37,'workflow_step_status_3','approved'),(676,6,37,'workflow_step_status_3_timestamp','1530152641'),(682,6,37,'workflow_current_status_timestamp','1530152641'),(683,2,35,'workflow_step_10_timestamp','1530152641'),(684,2,35,'workflow_step_status_10','complete'),(685,2,35,'workflow_step_status_10_timestamp','1530152834'),(688,5,38,'1.1','sdfcsvfsdf, fdfvds'),(689,5,38,'1.2','fdfvds'),(690,5,38,'1.4','sdfsfsfc'),(691,5,38,'1.5','323232'),(692,5,38,'1.6','Bangladesh'),(693,5,38,'2','(222) 222-2221'),(694,5,38,'workflow_final_status','approved'),(696,5,38,'workflow_timestamp','1530152800'),(697,5,38,'workflow_parent_entry_id','35'),(698,5,38,'workflow_parent_entry_hash','efed3010d1fb86c941a6939cdca7f897'),(699,5,38,'gravityflow_is_fulfilled','1'),(700,5,38,'workflow_step_5_timestamp','1530152800'),(701,5,38,'workflow_step_status_5','approved'),(702,5,38,'workflow_step_status_5_timestamp','1530152834'),(708,5,38,'workflow_current_status_timestamp','1530152834'),(709,5,38,'workflow_step_6_timestamp','1530152724'),(710,5,38,'workflow_step_status_6','complete'),(711,5,38,'workflow_step_status_6_timestamp','1530152800'),(722,1,39,'3','1'),(723,1,39,'4','2'),(724,1,39,'1','0'),(725,1,39,'workflow_final_status','complete'),(727,1,39,'workflow_timestamp','1530154819'),(728,1,39,'workflow_parent_entry_id',''),(729,1,39,'workflow_parent_entry_hash',''),(730,1,39,'gravityflow_is_fulfilled','1'),(731,1,39,'workflow_step_11_timestamp','1530154819'),(732,1,39,'workflow_step_status_11','complete'),(733,1,39,'workflow_step_status_11_timestamp','1530154822'),(734,2,40,'4','1'),(735,2,40,'workflow_parent_entry_id','39'),(736,2,40,'workflow_final_status','pending'),(737,2,40,'gravityflow_is_fulfilled','1'),(738,2,40,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(739,2,40,'workflow_step','10'),(740,2,40,'workflow_step_8_timestamp','1530154820'),(741,2,40,'workflow_step_status_8','complete'),(742,2,40,'workflow_step_status_8_timestamp','1530156911'),(745,7,41,'1.1','sdfcsvfsdf, fdfvds'),(746,7,41,'1.2','fdfvds'),(747,7,41,'1.4','sdfsfsfc'),(748,7,41,'1.5','323232'),(749,7,41,'1.6','Bangladesh'),(750,7,41,'2','(222) 222-2222'),(751,7,41,'workflow_final_status','approved'),(753,7,41,'workflow_timestamp','1530154852'),(754,7,41,'workflow_parent_entry_id','40'),(755,7,41,'workflow_parent_entry_hash','e6d5359b3d7559fbc31d95d6a813f2a6'),(756,7,41,'gravityflow_is_fulfilled','1'),(757,7,41,'workflow_step_4_timestamp','1530154854'),(758,7,41,'workflow_step_status_4','approved'),(759,7,41,'workflow_step_status_4_timestamp','1530156911'),(765,7,41,'workflow_current_status_timestamp','1530156911'),(766,2,40,'workflow_step_9_timestamp','1530156911'),(767,2,40,'workflow_step_status_9','complete'),(768,2,40,'workflow_step_status_9_timestamp','1530156985'),(771,6,42,'1','http://localhost/wp-content/uploads/gravity_forms/6-ac01225c6ae7b85e4fb3f04639c0c19f/2018/06/IMG_20180618_184920.jpg'),(772,6,42,'workflow_final_status','approved'),(774,6,42,'workflow_timestamp','1530156964'),(775,6,42,'workflow_parent_entry_id','40'),(776,6,42,'workflow_parent_entry_hash','a8f3aa7f554fcef48ee8eac75a7ac141'),(777,6,42,'gravityflow_is_fulfilled','1'),(778,6,42,'workflow_step_2_timestamp','1530156934'),(779,6,42,'workflow_step_status_2','complete'),(780,6,42,'workflow_step_status_2_timestamp','1530156964'),(785,6,42,'2','http://localhost/wp-content/uploads/gravity_forms/6-ac01225c6ae7b85e4fb3f04639c0c19f/2018/06/UserCompanyStructure1.pdf'),(786,6,42,'workflow_step_3_timestamp','1530156964'),(787,6,42,'workflow_step_status_3','approved'),(788,6,42,'workflow_step_status_3_timestamp','1530156985'),(794,6,42,'workflow_current_status_timestamp','1530156985'),(795,2,40,'workflow_step_10_timestamp','1530156985'),(796,2,40,'workflow_step_status_10','pending'),(797,2,40,'workflow_step_status_10_timestamp','1530156985'),(800,1,43,'3','1'),(801,1,43,'4','1'),(802,1,43,'1','1'),(803,1,43,'workflow_final_status','complete'),(805,1,43,'workflow_timestamp','1530170267'),(806,1,43,'workflow_parent_entry_id',''),(807,1,43,'workflow_parent_entry_hash',''),(808,1,43,'gravityflow_is_fulfilled','1'),(809,1,43,'workflow_step_12_timestamp','1530170267'),(810,1,43,'workflow_step_status_12','complete'),(811,1,43,'workflow_step_status_12_timestamp','1530170270'),(812,8,44,'2','1'),(813,8,44,'workflow_parent_entry_id','43'),(814,8,44,'workflow_final_status','cancelled'),(815,8,44,'gravityflow_is_fulfilled','1'),(816,8,44,'processed_feeds','a:1:{s:11:\"gravityflow\";a:7:{i:0;s:2:\"13\";i:1;s:2:\"14\";i:2;s:2:\"15\";i:3;s:2:\"16\";i:4;s:2:\"17\";i:5;s:2:\"18\";i:6;s:2:\"19\";}}'),(818,8,44,'workflow_step_13_timestamp','1530170268'),(819,8,44,'workflow_step_status_13','complete'),(820,8,44,'workflow_step_status_13_timestamp','1530170313'),(823,8,44,'10.1','sdfcsvfsdf, fdfvds'),(824,8,44,'10.2','fdfvds'),(825,8,44,'10.3','fsdfcsdfcs'),(826,8,44,'10.4','sdfsfsfc'),(827,8,44,'10.5','323232'),(828,8,44,'10.6','Bangladesh'),(829,8,44,'12','2018-06-13'),(830,8,44,'workflow_timestamp','1530170313'),(831,8,44,'workflow_parent_entry_hash','0'),(832,8,44,'workflow_step_14_timestamp','1530170313'),(833,8,44,'workflow_step_status_14','rejected'),(834,8,44,'workflow_step_status_14_timestamp','1530170341'),(837,8,44,'workflow_current_status','rejected'),(838,8,44,'workflow_current_status_timestamp','1530170341'),(839,8,44,'workflow_step_15_timestamp','1530170341'),(840,8,44,'workflow_step_status_15','pending'),(841,8,44,'workflow_step_status_15_timestamp','1530170341'),(844,1,45,'3','1'),(845,1,45,'4','1'),(846,1,45,'1','0'),(847,1,45,'workflow_final_status','complete'),(849,1,45,'workflow_timestamp','1530170504'),(850,1,45,'workflow_parent_entry_id',''),(851,1,45,'workflow_parent_entry_hash',''),(852,1,45,'gravityflow_is_fulfilled','1'),(853,1,45,'workflow_step_11_timestamp','1530170504'),(854,1,45,'workflow_step_status_11','complete'),(855,1,45,'workflow_step_status_11_timestamp','1530170506'),(856,2,46,'4','1'),(857,2,46,'workflow_parent_entry_id','45'),(858,2,46,'workflow_final_status','pending'),(859,2,46,'gravityflow_is_fulfilled','1'),(860,2,46,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(861,2,46,'workflow_step','8'),(862,2,46,'workflow_step_8_timestamp','1530170504'),(863,2,46,'workflow_step_status_8','pending'),(864,2,46,'workflow_step_status_8_timestamp','1530170504'),(865,2,46,'workflow_role_customer','pending'),(866,2,46,'workflow_role_customer_timestamp','1530170504'),(867,1,47,'3','1'),(868,1,47,'4','1'),(869,1,47,'1','0'),(870,1,47,'workflow_final_status','complete'),(872,1,47,'workflow_timestamp','1530170510'),(873,1,47,'workflow_parent_entry_id',''),(874,1,47,'workflow_parent_entry_hash',''),(875,1,47,'gravityflow_is_fulfilled','1'),(876,1,47,'workflow_step_11_timestamp','1530170510'),(877,1,47,'workflow_step_status_11','complete'),(878,1,47,'workflow_step_status_11_timestamp','1530170512'),(879,2,48,'4','1'),(880,2,48,'workflow_parent_entry_id','47'),(881,2,48,'workflow_final_status','pending'),(882,2,48,'gravityflow_is_fulfilled','1'),(883,2,48,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(884,2,48,'workflow_step','8'),(885,2,48,'workflow_step_8_timestamp','1530170510'),(886,2,48,'workflow_step_status_8','pending'),(887,2,48,'workflow_step_status_8_timestamp','1530170510'),(888,2,48,'workflow_role_customer','pending'),(889,2,48,'workflow_role_customer_timestamp','1530170510'),(890,1,49,'3','1'),(891,1,49,'4','1'),(892,1,49,'1','1'),(893,1,49,'workflow_final_status','complete'),(895,1,49,'workflow_timestamp','1530170568'),(896,1,49,'workflow_parent_entry_id',''),(897,1,49,'workflow_parent_entry_hash',''),(898,1,49,'gravityflow_is_fulfilled','1'),(899,1,49,'workflow_step_12_timestamp','1530170568'),(900,1,49,'workflow_step_status_12','complete'),(901,1,49,'workflow_step_status_12_timestamp','1530170570'),(902,8,50,'2','1'),(903,8,50,'workflow_parent_entry_id','49'),(904,8,50,'workflow_final_status','approved'),(905,8,50,'gravityflow_is_fulfilled','1'),(906,8,50,'processed_feeds','a:1:{s:11:\"gravityflow\";a:7:{i:0;s:2:\"13\";i:1;s:2:\"14\";i:2;s:2:\"15\";i:3;s:2:\"16\";i:4;s:2:\"17\";i:5;s:2:\"18\";i:6;s:2:\"19\";}}'),(908,8,50,'workflow_step_13_timestamp','1530170775'),(909,8,50,'workflow_step_status_13','complete'),(910,8,50,'workflow_step_status_13_timestamp','1530170793'),(913,8,50,'10.1','sdfcsvfsdf, fdfvds, fdfvds'),(914,8,50,'10.2','fdfvds'),(915,8,50,'10.3','fsdfcsdfcs'),(916,8,50,'10.4','sdfsfsfc'),(917,8,50,'10.5','323232'),(918,8,50,'10.6','Bangladesh'),(919,8,50,'12','2018-06-13'),(920,8,50,'workflow_timestamp','1530170877'),(921,8,50,'workflow_parent_entry_hash','0'),(922,8,50,'workflow_step_14_timestamp','1530170793'),(923,8,50,'workflow_step_status_14','approved'),(924,8,50,'workflow_step_status_14_timestamp','1530170804'),(928,8,50,'workflow_current_status_timestamp','1530170917'),(933,8,50,'workflow_step_15_timestamp','1530170804'),(934,8,50,'workflow_step_status_15','complete'),(935,8,50,'workflow_step_status_15_timestamp','1530170859'),(938,8,50,'7','http://localhost/wp-content/uploads/gravity_forms/8-a9d99a11c470419b0fb14acacca4595c/2018/06/Installation-scheduling.pdf'),(939,8,50,'workflow_step_16_timestamp','1530170859'),(940,8,50,'workflow_step_status_16','complete'),(941,8,50,'workflow_step_status_16_timestamp','1530170877'),(944,8,50,'8','http://localhost/wp-content/uploads/gravity_forms/8-a9d99a11c470419b0fb14acacca4595c/2018/06/DashboardHomepage.pdf'),(945,8,50,'workflow_step_17_timestamp','1530170877'),(946,8,50,'workflow_step_status_17','approved'),(947,8,50,'workflow_step_status_17_timestamp','1530170895'),(950,8,50,'workflow_step_19_timestamp','1530170895'),(951,8,50,'workflow_step_status_19','approved'),(952,8,50,'workflow_step_status_19_timestamp','1530170917'),(955,2,40,'workflow_role_customer','pending'),(956,2,40,'workflow_role_customer_timestamp','1530171027'),(957,1,51,'3','1'),(958,1,51,'4','1'),(959,1,51,'1','1'),(960,1,51,'workflow_final_status','complete'),(962,1,51,'workflow_timestamp','1530185943'),(963,1,51,'workflow_parent_entry_id',''),(964,1,51,'workflow_parent_entry_hash',''),(965,1,51,'gravityflow_is_fulfilled','1'),(966,1,51,'workflow_step_12_timestamp','1530185943'),(967,1,51,'workflow_step_status_12','complete'),(968,1,51,'workflow_step_status_12_timestamp','1530185945'),(969,8,52,'2','1'),(970,8,52,'workflow_parent_entry_id','51'),(971,8,52,'workflow_final_status','pending'),(972,8,52,'gravityflow_is_fulfilled','1'),(973,8,52,'processed_feeds','a:1:{s:11:\"gravityflow\";a:7:{i:0;s:2:\"13\";i:1;s:2:\"14\";i:2;s:2:\"15\";i:3;s:2:\"16\";i:4;s:2:\"17\";i:5;s:2:\"18\";i:6;s:2:\"19\";}}'),(974,8,52,'workflow_step','13'),(975,8,52,'workflow_step_13_timestamp','1530185943'),(976,8,52,'workflow_step_status_13','pending'),(977,8,52,'workflow_step_status_13_timestamp','1530185943'),(978,8,52,'workflow_role_customer','pending'),(979,8,52,'workflow_role_customer_timestamp','1530185943'),(980,1,53,'3','1'),(981,1,53,'4','4'),(982,1,53,'1','0'),(983,1,53,'workflow_final_status','complete'),(985,1,53,'workflow_timestamp','1530186123'),(986,1,53,'workflow_parent_entry_id',''),(987,1,53,'workflow_parent_entry_hash',''),(988,1,53,'gravityflow_is_fulfilled','1'),(989,1,53,'workflow_step_11_timestamp','1530186123'),(990,1,53,'workflow_step_status_11','complete'),(991,1,53,'workflow_step_status_11_timestamp','1530186126'),(992,2,54,'4','1'),(993,2,54,'workflow_parent_entry_id','53'),(994,2,54,'workflow_final_status','pending'),(995,2,54,'gravityflow_is_fulfilled','1'),(996,2,54,'processed_feeds','a:1:{s:11:\"gravityflow\";a:3:{i:0;s:1:\"8\";i:1;s:1:\"9\";i:2;s:2:\"10\";}}'),(997,2,54,'workflow_step','8'),(998,2,54,'workflow_step_8_timestamp','1530186123'),(999,2,54,'workflow_step_status_8','pending'),(1000,2,54,'workflow_step_status_8_timestamp','1530186124'),(1001,2,54,'workflow_role_customer','pending'),(1002,2,54,'workflow_role_customer_timestamp','1530186124'); /*!40000 ALTER TABLE `wp_gf_entry_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_entry_notes` -- DROP TABLE IF EXISTS `wp_gf_entry_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_entry_notes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `user_name` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `date_created` datetime NOT NULL, `value` longtext COLLATE utf8mb4_unicode_520_ci, `note_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `sub_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`), KEY `entry_user_key` (`entry_id`,`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=131 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_entry_notes` -- LOCK TABLES `wp_gf_entry_notes` WRITE; /*!40000 ALTER TABLE `wp_gf_entry_notes` DISABLE KEYS */; INSERT INTO `wp_gf_entry_notes` VALUES (1,1,'new_entry',0,'2018-06-28 00:12:49','Start First Process: Processed.','gravityflow',NULL),(2,3,'form_submission',0,'2018-06-28 00:17:54','Enter installation info: Pending.','gravityflow',NULL),(3,2,'new_entry',0,'2018-06-28 00:17:54','Start First Process: Processed.','gravityflow',NULL),(4,3,'worpwooc',1,'2018-06-28 00:18:59','cc','note',NULL),(5,3,'form_submission',0,'2018-06-28 00:22:45','Submission received.','gravityflow',NULL),(6,3,'form_submission',0,'2018-06-28 00:22:45','Enter installation info: Processed','gravityflow',NULL),(7,3,'form_submission',0,'2018-06-28 00:22:45','Upload signed contract: Pending.','gravityflow',NULL),(8,3,'form_submission',0,'2018-06-28 00:33:16','Submission received.','gravityflow',NULL),(9,3,'form_submission',0,'2018-06-28 00:33:16','Upload signed contract: Processed','gravityflow',NULL),(10,3,'form_submission',0,'2018-06-28 00:33:16','Add configuration info: Pending.','gravityflow',NULL),(11,5,'br ok',2,'2018-06-28 00:36:21','Approve configuration info: Approved.','gravityflow',NULL),(12,4,'br ok',2,'2018-06-28 00:36:41','Approve installation info: Approved.','gravityflow',NULL),(13,7,'form_submission',0,'2018-06-28 00:40:10','Enter installation info: Pending.','gravityflow',NULL),(14,6,'new_entry',0,'2018-06-28 00:40:10','Start First Process: Processed.','gravityflow',NULL),(15,7,'form_submission',0,'2018-06-28 00:41:34','Submission received.','gravityflow',NULL),(16,7,'form_submission',0,'2018-06-28 00:41:34','Enter installation info: Processed','gravityflow',NULL),(17,7,'form_submission',0,'2018-06-28 00:41:34','Upload signed contract: Pending.','gravityflow',NULL),(18,10,'form_submission',0,'2018-06-28 00:49:22','Enter installation info: Pending.','gravityflow',NULL),(19,9,'new_entry',0,'2018-06-28 00:49:22','Start First Process: Processed.','gravityflow',NULL),(20,10,'worpwooc',1,'2018-06-28 00:51:26','Workflow cancelled.','gravityflow',NULL),(21,7,'worpwooc',1,'2018-06-28 00:51:32','Workflow cancelled.','gravityflow',NULL),(22,8,'worpwooc',1,'2018-06-28 01:00:23','Approve installation info: Approved.','gravityflow',NULL),(23,4,'worpwooc',1,'2018-06-28 01:01:27','Update installation info: Entry updated and marked complete.','gravityflow',NULL),(24,8,'worpwooc',1,'2018-06-28 01:01:42','Update installation info: Entry updated and marked complete.','gravityflow',NULL),(25,12,'worpwooc',1,'2018-06-28 01:02:19','Workflow cancelled.','gravityflow',NULL),(26,11,'worpwooc',1,'2018-06-28 01:02:29','Workflow cancelled.','gravityflow',NULL),(27,8,'worpwooc',1,'2018-06-28 01:02:41','Workflow cancelled.','gravityflow',NULL),(28,4,'worpwooc',1,'2018-06-28 01:02:50','Workflow cancelled.','gravityflow',NULL),(29,3,'worpwooc',1,'2018-06-28 01:02:59','Workflow cancelled.','gravityflow',NULL),(30,14,'form_submission',0,'2018-06-28 01:17:03','Enter installation info: Pending.','gravityflow',NULL),(31,13,'new_entry',0,'2018-06-28 01:17:03','Start First Process: Processed.','gravityflow',NULL),(32,15,'worpwooc',1,'2018-06-28 01:18:35','Approve installation info: Approved.','gravityflow',NULL),(33,15,'worpwooc',1,'2018-06-28 01:19:37','Approve installation info: Approved.','gravityflow',NULL),(34,16,'worpwooc',1,'2018-06-28 01:23:42','Approve installation info: Approved.','gravityflow',NULL),(35,16,'worpwooc',1,'2018-06-28 01:24:30','Approve installation info: Approved.','gravityflow',NULL),(36,17,'worpwooc',1,'2018-06-28 01:30:04','Approve installation info: Approved.','gravityflow',NULL),(37,17,'worpwooc',1,'2018-06-28 01:30:17','Approve installation info: Approved.','gravityflow',NULL),(38,14,'worpwooc',1,'2018-06-28 01:33:58','Workflow cancelled.','gravityflow',NULL),(39,19,'form_submission',0,'2018-06-28 01:34:12','Enter installation info: Pending.','gravityflow',NULL),(40,18,'new_entry',0,'2018-06-28 01:34:12','Start First Process: Processed.','gravityflow',NULL),(41,20,'worpwooc',1,'2018-06-28 01:34:45','Approve installation info: Approved.','gravityflow',NULL),(42,20,'worpwooc',1,'2018-06-28 01:34:53','Approve installation info: Approved.','gravityflow',NULL),(43,21,'worpwooc',1,'2018-06-28 01:40:37','Approve installation info: Approved.','gravityflow',NULL),(44,21,'worpwooc',1,'2018-06-28 01:40:52','Approve installation info: Approved.','gravityflow',NULL),(45,22,'worpwooc',1,'2018-06-28 01:49:35','Approve installation info: Approved.','gravityflow',NULL),(46,23,'worpwooc',1,'2018-06-28 01:51:48','Approve installation info: Approved.','gravityflow',NULL),(47,24,'worpwooc',1,'2018-06-28 01:53:02','Approve installation info: Approved.','gravityflow',NULL),(48,25,'worpwooc',1,'2018-06-28 01:53:31','Approve installation info: Approved.','gravityflow',NULL),(49,26,'worpwooc',1,'2018-06-28 01:54:12','Approve installation info: Approved.','gravityflow',NULL),(50,27,'worpwooc',1,'2018-06-28 01:54:45','Approve installation info: Approved.','gravityflow',NULL),(51,19,'form_submission',0,'2018-06-28 01:58:22','Submission received.','gravityflow',NULL),(52,19,'form_submission',0,'2018-06-28 01:58:22','Enter installation info: Processed','gravityflow',NULL),(53,28,'worpwooc',1,'2018-06-28 02:00:09','Approve installation info: Approved.','gravityflow',NULL),(54,19,'worpwooc',1,'2018-06-28 02:01:39','Workflow cancelled.','gravityflow',NULL),(55,30,'form_submission',0,'2018-06-28 02:01:51','Enter installation info: Pending.','gravityflow',NULL),(56,29,'new_entry',0,'2018-06-28 02:01:51','Start First Process: Processed.','gravityflow',NULL),(57,30,'form_submission',0,'2018-06-28 02:02:38','Submission received.','gravityflow',NULL),(58,30,'form_submission',0,'2018-06-28 02:02:38','Enter installation info: Processed','gravityflow',NULL),(59,30,'form_submission',0,'2018-06-28 02:02:38','Pending approval','gravityflow',NULL),(60,31,'worpwooc',1,'2018-06-28 02:03:07','Approve installation info: Approved.','gravityflow',NULL),(61,30,'form_submission',0,'2018-06-28 02:03:09','Upload signed contract: Pending.','gravityflow',NULL),(62,30,'form_submission',0,'2018-06-28 02:08:28','Upload signed contract:Submission received.','gravityflow',NULL),(63,30,'form_submission',0,'2018-06-28 02:08:28','Upload signed contract: Processed','gravityflow',NULL),(64,30,'form_submission',0,'2018-06-28 02:08:28','Upload signed contract:Pending approval','gravityflow',NULL),(65,32,'worpwooc',1,'2018-06-28 02:09:17','Upload signed contract: Entry updated and marked complete.','gravityflow',NULL),(66,32,'worpwooc',1,'2018-06-28 02:09:25','Approve signed contract: Approved.','gravityflow',NULL),(67,30,'form_submission',0,'2018-06-28 02:09:27','Upload signed contract:Approved','gravityflow',NULL),(68,30,'form_submission',0,'2018-06-28 02:09:27','Add configuration info: Pending.','gravityflow',NULL),(69,30,'form_submission',0,'2018-06-28 02:10:26','Add configuration info:Submission received.','gravityflow',NULL),(70,30,'form_submission',0,'2018-06-28 02:10:26','Add configuration info: Processed','gravityflow',NULL),(71,30,'form_submission',0,'2018-06-28 02:10:26','Add configuration info:Pending approval','gravityflow',NULL),(72,33,'worpwooc',1,'2018-06-28 02:10:41','Approve configuration info: Approved.','gravityflow',NULL),(73,30,'form_submission',0,'2018-06-28 02:10:41','Add configuration info:Approved','gravityflow',NULL),(74,35,'form_submission',0,'2018-06-28 02:14:32','Enter installation info: Pending.','gravityflow',NULL),(75,34,'new_entry',0,'2018-06-28 02:14:32','Start First Process: Processed.','gravityflow',NULL),(76,35,'form_submission',0,'2018-06-28 02:18:14','Enter installation info:Submission received.','gravityflow',NULL),(77,35,'form_submission',0,'2018-06-28 02:18:14','Enter installation info: Processed','gravityflow',NULL),(78,35,'form_submission',0,'2018-06-28 02:18:14','Enter installation info:Pending approval','gravityflow',NULL),(79,36,'worpwooc',1,'2018-06-28 02:18:51','Approve installation info: Approved.','gravityflow',NULL),(80,35,'form_submission',0,'2018-06-28 02:18:53','Enter installation info:Approved','gravityflow',NULL),(81,35,'form_submission',0,'2018-06-28 02:18:53','Upload signed contract: Pending.','gravityflow',NULL),(82,35,'form_submission',0,'2018-06-28 02:22:19','Upload signed contract:Submission received.','gravityflow',NULL),(83,35,'form_submission',0,'2018-06-28 02:22:19','Upload signed contract: Processed','gravityflow',NULL),(84,35,'form_submission',0,'2018-06-28 02:22:19','Upload signed contract:Pending approval','gravityflow',NULL),(85,37,'worpwooc',1,'2018-06-28 02:23:20','Upload signed contract: Entry updated and marked complete.','gravityflow',NULL),(86,37,'worpwooc',1,'2018-06-28 02:23:59','Approve signed contract: Approved.','gravityflow',NULL),(87,35,'form_submission',0,'2018-06-28 02:24:01','Upload signed contract:Approved','gravityflow',NULL),(88,35,'form_submission',0,'2018-06-28 02:24:01','Add configuration info: Pending.','gravityflow',NULL),(89,35,'form_submission',0,'2018-06-28 02:24:45','Add configuration info:Submission received.','gravityflow',NULL),(90,35,'form_submission',0,'2018-06-28 02:24:45','Add configuration info: Processed','gravityflow',NULL),(91,35,'form_submission',0,'2018-06-28 02:24:45','Add configuration info:Pending approval','gravityflow',NULL),(92,38,'worpwooc',1,'2018-06-28 02:25:24','Approve configuration info: Rejected.','gravityflow',NULL),(93,38,'worpwooc',1,'2018-06-28 02:26:40','Update configuration info: Entry updated and marked complete.','gravityflow',NULL),(94,38,'worpwooc',1,'2018-06-28 02:27:14','Approve configuration info: Approved.','gravityflow',NULL),(95,35,'form_submission',0,'2018-06-28 02:27:14','Add configuration info:Approved','gravityflow',NULL),(96,40,'form_submission',0,'2018-06-28 03:00:22','Enter installation info: Pending.','gravityflow',NULL),(97,39,'new_entry',0,'2018-06-28 03:00:22','Start First Process: Processed.','gravityflow',NULL),(98,40,'form_submission',0,'2018-06-28 03:00:54','Enter installation info:Submission received.','gravityflow',NULL),(99,40,'form_submission',0,'2018-06-28 03:00:54','Enter installation info: Processed','gravityflow',NULL),(100,40,'form_submission',0,'2018-06-28 03:00:54','Enter installation info:Pending approval','gravityflow',NULL),(101,41,'worpwooc',1,'2018-06-28 03:35:09','Approve installation info: Approved.','gravityflow',NULL),(102,40,'form_submission',0,'2018-06-28 03:35:11','Enter installation info:Approved','gravityflow',NULL),(103,40,'form_submission',0,'2018-06-28 03:35:11','Upload signed contract: Pending.','gravityflow',NULL),(104,40,'form_submission',0,'2018-06-28 03:35:36','Upload signed contract:Submission received.','gravityflow',NULL),(105,40,'form_submission',0,'2018-06-28 03:35:36','Upload signed contract: Processed','gravityflow',NULL),(106,40,'form_submission',0,'2018-06-28 03:35:36','Upload signed contract:Pending approval','gravityflow',NULL),(107,42,'worpwooc',1,'2018-06-28 03:36:04','Upload signed contract: Entry updated and marked complete.','gravityflow',NULL),(108,42,'worpwooc',1,'2018-06-28 03:36:23','Approve signed contract: Approved.','gravityflow',NULL),(109,40,'form_submission',0,'2018-06-28 03:36:25','Upload signed contract:Approved','gravityflow',NULL),(110,40,'form_submission',0,'2018-06-28 03:36:25','Add configuration info: Pending.','gravityflow',NULL),(111,43,'new_entry',0,'2018-06-28 07:17:50','Start second process: Processed.','gravityflow',NULL),(112,44,'worpwooc',1,'2018-06-28 07:18:33','Enter installation info: Entry updated and marked complete.','gravityflow',NULL),(113,44,'worpwooc',1,'2018-06-28 07:19:01','Approve installation info: Rejected.','gravityflow',NULL),(114,44,'worpwooc',1,'2018-06-28 07:19:35','Workflow cancelled.','gravityflow',NULL),(115,46,'form_submission',0,'2018-06-28 07:21:46','Enter installation info: Pending.','gravityflow',NULL),(116,45,'new_entry',0,'2018-06-28 07:21:46','Start First Process: Processed.','gravityflow',NULL),(117,48,'form_submission',0,'2018-06-28 07:21:52','Enter installation info: Pending.','gravityflow',NULL),(118,47,'new_entry',0,'2018-06-28 07:21:52','Start First Process: Processed.','gravityflow',NULL),(119,49,'new_entry',0,'2018-06-28 07:22:50','Start second process: Processed.','gravityflow',NULL),(120,50,'worpwooc',1,'2018-06-28 07:26:03','Enter installation info: Entry updated and marked complete.','gravityflow',NULL),(121,50,'worpwooc',1,'2018-06-28 07:26:15','Approve installation info: Rejected.','gravityflow',NULL),(122,50,'worpwooc',1,'2018-06-28 07:26:33','Enter installation info: Entry updated and marked complete.','gravityflow',NULL),(123,50,'worpwooc',1,'2018-06-28 07:26:44','Approve installation info: Approved.','gravityflow',NULL),(124,50,'worpwooc',1,'2018-06-28 07:27:39','Upload contract template: Entry updated and marked complete.','gravityflow',NULL),(125,50,'worpwooc',1,'2018-06-28 07:27:57','Upload signed contract: Entry updated and marked complete.','gravityflow',NULL),(126,50,'worpwooc',1,'2018-06-28 07:28:14','Approve signed contract: Approved.','gravityflow',NULL),(127,50,'worpwooc',1,'2018-06-28 07:28:37','Approve configuration info: Approved.','gravityflow',NULL),(128,51,'new_entry',0,'2018-06-28 11:39:05','Start second process: Processed.','gravityflow',NULL),(129,54,'form_submission',0,'2018-06-28 11:42:06','Enter installation info: Pending.','gravityflow',NULL),(130,53,'new_entry',0,'2018-06-28 11:42:06','Start First Process: Processed.','gravityflow',NULL); /*!40000 ALTER TABLE `wp_gf_entry_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_form` -- DROP TABLE IF EXISTS `wp_gf_form`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_form` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL, `date_created` datetime NOT NULL, `date_updated` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_trash` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_form` -- LOCK TABLES `wp_gf_form` WRITE; /*!40000 ALTER TABLE `wp_gf_form` DISABLE KEYS */; INSERT INTO `wp_gf_form` VALUES (1,'Start workflow process','2018-06-27 23:30:44',NULL,1,0),(2,'Process with multiple forms','2018-06-27 23:37:18',NULL,1,0),(3,'Start workflow (1)','2018-06-27 23:38:47',NULL,1,1),(4,'Second process','2018-06-27 23:38:56',NULL,1,1),(5,'STEP: Enter configuration info','2018-06-27 23:39:42',NULL,1,0),(6,'STEP: Upload contract','2018-06-27 23:40:13',NULL,1,0),(7,'STEP: Enter installation info','2018-06-27 23:49:11',NULL,1,0),(8,'Process with virtual forms','2018-06-28 07:04:37',NULL,1,0); /*!40000 ALTER TABLE `wp_gf_form` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_form_meta` -- DROP TABLE IF EXISTS `wp_gf_form_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_form_meta` ( `form_id` mediumint(8) unsigned NOT NULL, `display_meta` longtext COLLATE utf8mb4_unicode_520_ci, `entries_grid_meta` longtext COLLATE utf8mb4_unicode_520_ci, `confirmations` longtext COLLATE utf8mb4_unicode_520_ci, `notifications` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_form_meta` -- LOCK TABLES `wp_gf_form_meta` WRITE; /*!40000 ALTER TABLE `wp_gf_form_meta` DISABLE KEYS */; INSERT INTO `wp_gf_form_meta` VALUES (1,'{\"title\":\"Start workflow process\",\"description\":\"Start one of the existing workflows\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"section\",\"id\":2,\"label\":\"Select and start one of the existing workflows\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"number\",\"id\":3,\"label\":\"Order Id\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"decimal_dot\",\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":\"\",\"rangeMax\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\",\"enablePrice\":\"\"},{\"type\":\"workflow_user\",\"id\":4,\"label\":\"Assignee Id\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"value\":\"2\",\"text\":\"br ok\"},{\"value\":\"3\",\"text\":\"Multi User\"},{\"value\":\"1\",\"text\":\"worpwooc\"}],\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"gravityflowUsersRoleFilter\":\"\",\"displayOnly\":\"\",\"enablePrice\":\"\"},{\"type\":\"select\",\"id\":1,\"label\":\"Select process:\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"Process with multiple forms\",\"value\":\"0\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Process with virtual forms\",\"value\":\"1\",\"isSelected\":false,\"price\":\"\"}],\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"enableChoiceValue\":true,\"pageNumber\":1,\"displayOnly\":\"\"}],\"version\":\"2.3.0.2\",\"id\":1,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}',NULL,'{\"5b341e2436d93\":{\"id\":\"5b341e2436d93\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5b341e2436125\":{\"id\":\"5b341e2436125\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"isActive\":false}}'),(2,'{\"title\":\"Process with multiple forms\",\"description\":\"First example for process\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"number\",\"id\":4,\"label\":\"Order Id\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"decimal_dot\",\"formId\":2,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":\"\",\"rangeMax\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\",\"enablePrice\":\"\"}],\"version\":\"2.3.0.2\",\"id\":2,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"notifications\":{\"5b341faeec6a2\":{\"id\":\"5b341faeec6a2\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"5b341faeed356\":{\"id\":\"5b341faeed356\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}},\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}',NULL,'{\"5b341faeed356\":{\"id\":\"5b341faeed356\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5b341faeec6a2\":{\"id\":\"5b341faeec6a2\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}'),(3,'{\"title\":\"Start workflow (1)\",\"description\":\"Start one of the existing workflows\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"section\",\"id\":2,\"label\":\"Select and start one of the existing workflows\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"select\",\"id\":1,\"label\":\"Select process:\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"First process\",\"value\":\"0\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Second process\",\"value\":\"1\",\"isSelected\":false,\"price\":\"\"}],\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"enableChoiceValue\":true,\"pageNumber\":1}],\"version\":\"2.3.0.2\",\"id\":3,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}',NULL,'{\"5b341e2436d93\":{\"id\":\"5b341e2436d93\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5b341e2436125\":{\"id\":\"5b341e2436125\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}'),(4,'{\"title\":\"Second process\",\"description\":\"Second example for process\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"number\",\"id\":3,\"label\":\"Order Id\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"decimal_dot\",\"formId\":4,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":\"\",\"rangeMax\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\",\"enablePrice\":\"\"}],\"version\":\"2.3.0.2\",\"id\":4,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"notifications\":{\"5b341faeec6a2\":{\"id\":\"5b341faeec6a2\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"5b341faeed356\":{\"id\":\"5b341faeed356\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}}',NULL,'{\"5b341faeed356\":{\"id\":\"5b341faeed356\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5b341faeec6a2\":{\"id\":\"5b341faeec6a2\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}'),(5,'{\"title\":\"STEP: Enter configuration info\",\"description\":\"Enter configuration info\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"address\",\"id\":1,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"addressType\":\"international\",\"inputs\":[{\"id\":\"1.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"1.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"1.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"1.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"1.6\",\"label\":\"Country\",\"name\":\"\"}],\"formId\":5,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"productField\":\"\",\"hideCountry\":\"\",\"defaultState\":\"\",\"hideState\":\"\",\"hideAddress2\":\"\",\"enableCopyValuesOption\":\"\",\"copyValuesOptionDefault\":\"\",\"copyValuesOptionLabel\":\"\",\"pageNumber\":1},{\"type\":\"phone\",\"id\":2,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":5,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"form_id\":\"\",\"productField\":\"\",\"pageNumber\":1}],\"version\":\"2.3.0.2\",\"id\":5,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}',NULL,'{\"5b34203e4ad6e\":{\"id\":\"5b34203e4ad6e\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5b34203e4a5e4\":{\"id\":\"5b34203e4a5e4\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"isActive\":false}}'),(6,'{\"title\":\"STEP: Upload contract\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"hidden\",\"id\":3,\"label\":\"Order id\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":6,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"fileupload\",\"id\":1,\"label\":\"Contract template\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":6,\"description\":\"Select and upload contract template\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"maxFileSize\":\"\",\"maxFiles\":\"\",\"multipleFiles\":false,\"allowedExtensions\":\"\",\"productField\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\",\"enablePrice\":\"\"},{\"type\":\"fileupload\",\"id\":2,\"label\":\"Signed contract:\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":6,\"description\":\"Select and update signed contract\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"maxFileSize\":\"\",\"maxFiles\":\"\",\"multipleFiles\":false,\"allowedExtensions\":\"\",\"productField\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\",\"enablePrice\":\"\"}],\"version\":\"2.3.0.2\",\"id\":6,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}',NULL,'{\"5b34205d30c38\":{\"id\":\"5b34205d30c38\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5b34205d30316\":{\"id\":\"5b34205d30316\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}'),(7,'{\"title\":\"STEP: Enter installation info\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"address\",\"id\":1,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"addressType\":\"international\",\"inputs\":[{\"id\":\"1.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"1.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"1.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"1.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"1.6\",\"label\":\"Country\",\"name\":\"\"}],\"formId\":7,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"productField\":\"\",\"hideCountry\":\"\",\"defaultState\":\"\",\"hideState\":\"\",\"hideAddress2\":\"\",\"enableCopyValuesOption\":\"\",\"copyValuesOptionDefault\":\"\",\"copyValuesOptionLabel\":\"\",\"pageNumber\":1},{\"type\":\"phone\",\"id\":2,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":7,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"form_id\":\"\",\"productField\":\"\",\"pageNumber\":1},{\"type\":\"date\",\"id\":3,\"label\":\"Date\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"dateType\":\"datepicker\",\"calendarIconType\":\"none\",\"formId\":7,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"calendarIconUrl\":\"\",\"dateFormat\":\"\",\"productField\":\"\",\"pageNumber\":1}],\"version\":\"2.3.0.2\",\"id\":7,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}',NULL,'{\"5b342277633d0\":{\"id\":\"5b342277633d0\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5b342277629bf\":{\"id\":\"5b342277629bf\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}'),(8,'{\"title\":\"Process with virtual forms\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"hidden\",\"id\":2,\"label\":\"Order Id\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\",\"enablePrice\":\"\"},{\"type\":\"section\",\"id\":3,\"label\":\"Upload configuration step\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"address\",\"id\":4,\"label\":\"Configuration Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"addressType\":\"international\",\"inputs\":[{\"id\":\"4.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"4.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"4.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"4.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"4.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"4.6\",\"label\":\"Country\",\"name\":\"\"}],\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"productField\":\"\",\"defaultState\":\"\",\"enableCopyValuesOption\":\"\",\"copyValuesOptionDefault\":\"\",\"copyValuesOptionLabel\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":5,\"label\":\"Configuration Email\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"emailConfirmEnabled\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\",\"enablePrice\":\"\"},{\"type\":\"section\",\"id\":6,\"label\":\"Upload signed constract step\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"fileupload\",\"id\":7,\"label\":\"Contract template\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"maxFileSize\":\"\",\"maxFiles\":\"\",\"multipleFiles\":false,\"allowedExtensions\":\"\",\"productField\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\",\"enablePrice\":\"\"},{\"type\":\"fileupload\",\"id\":8,\"label\":\"Signed contract\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"maxFileSize\":\"\",\"maxFiles\":\"\",\"multipleFiles\":false,\"allowedExtensions\":\"\",\"productField\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\",\"enablePrice\":\"\"},{\"type\":\"section\",\"id\":9,\"label\":\"Enter installation info\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1},{\"type\":\"address\",\"id\":10,\"label\":\"Installation Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"addressType\":\"international\",\"inputs\":[{\"id\":\"10.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"10.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"10.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"10.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"10.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"10.6\",\"label\":\"Country\",\"name\":\"\"}],\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"productField\":\"\",\"defaultState\":\"\",\"enableCopyValuesOption\":\"\",\"copyValuesOptionDefault\":\"\",\"copyValuesOptionLabel\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"},{\"type\":\"date\",\"id\":12,\"label\":\"Installation Date\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"dateType\":\"datepicker\",\"calendarIconType\":\"none\",\"formId\":8,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"calendarIconUrl\":\"\",\"dateFormat\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"displayOnly\":\"\"}],\"version\":\"2.3.0.2\",\"id\":8,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"notifications\":{\"5b3488858f51d\":{\"id\":\"5b3488858f51d\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"5b3488858ff3f\":{\"id\":\"5b3488858ff3f\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}},\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}',NULL,'{\"5b3488858ff3f\":{\"id\":\"5b3488858ff3f\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"5b3488858f51d\":{\"id\":\"5b3488858f51d\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"isActive\":false}}'); /*!40000 ALTER TABLE `wp_gf_form_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gf_form_view` -- DROP TABLE IF EXISTS `wp_gf_form_view`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gf_form_view` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `form_id` mediumint(8) unsigned NOT NULL, `date_created` datetime NOT NULL, `ip` char(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `count` mediumint(8) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `date_created` (`date_created`), KEY `form_id` (`form_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gf_form_view` -- LOCK TABLES `wp_gf_form_view` WRITE; /*!40000 ALTER TABLE `wp_gf_form_view` DISABLE KEYS */; INSERT INTO `wp_gf_form_view` VALUES (1,1,'2018-06-27 23:59:06','',4),(2,7,'2018-06-28 00:21:11','',15),(3,5,'2018-06-28 00:21:13','',6),(4,6,'2018-06-28 02:08:06','',3); /*!40000 ALTER TABLE `wp_gf_form_view` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gravityflow_activity_log` -- DROP TABLE IF EXISTS `wp_gravityflow_activity_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gravityflow_activity_log` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `log_object` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `log_event` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `log_value` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `date_created` datetime NOT NULL, `form_id` mediumint(8) unsigned NOT NULL, `lead_id` int(10) unsigned NOT NULL, `assignee_id` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `assignee_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `feed_id` mediumint(8) unsigned NOT NULL, `duration` int(10) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=458 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gravityflow_activity_log` -- LOCK TABLES `wp_gravityflow_activity_log` WRITE; /*!40000 ALTER TABLE `wp_gravityflow_activity_log` DISABLE KEYS */; INSERT INTO `wp_gravityflow_activity_log` VALUES (1,'workflow','started','','2018-06-28 00:12:49',1,1,'0','','',0,0),(2,'step','started','','2018-06-28 00:12:49',1,1,'0','','',11,0),(3,'step','ended','complete','2018-06-28 00:12:49',1,1,'0','','',11,0),(4,'workflow','ended','complete','2018-06-28 00:12:49',1,1,'0','','',0,0),(5,'workflow','started','','2018-06-28 00:17:54',1,2,'0','','',0,0),(6,'step','started','','2018-06-28 00:17:54',1,2,'0','','',11,0),(7,'workflow','started','','2018-06-28 00:17:54',2,3,'0','','',0,0),(8,'step','started','','2018-06-28 00:17:54',2,3,'0','','',8,0),(9,'assignee','status','pending','2018-06-28 00:17:54',2,3,'customer','role','customer',8,0),(10,'step','ended','complete','2018-06-28 00:17:54',1,2,'0','','',11,0),(11,'workflow','ended','complete','2018-06-28 00:17:54',1,2,'0','','',0,0),(12,'assignee','status','pending','2018-06-28 00:22:10',2,3,'administrator','role','administrator',8,0),(13,'workflow','started','','2018-06-28 00:22:45',7,4,'0','','',0,0),(14,'step','started','','2018-06-28 00:22:45',7,4,'0','','',4,0),(15,'assignee','status','pending','2018-06-28 00:22:45',7,4,'broker','role','broker',4,0),(16,'assignee','status','complete','2018-06-28 00:22:45',2,3,'administrator','role','administrator',8,35),(17,'step','ended','complete','2018-06-28 00:22:45',2,3,'0','','',8,291),(18,'step','started','','2018-06-28 00:22:45',2,3,'0','','',9,0),(19,'assignee','status','pending','2018-06-28 00:22:45',2,3,'broker','role','broker',9,0),(20,'assignee','status','pending','2018-06-28 00:33:02',2,3,'administrator','role','administrator',9,0),(21,'workflow','started','','2018-06-28 00:33:16',5,5,'0','','',0,0),(22,'step','started','','2018-06-28 00:33:16',5,5,'0','','',5,0),(23,'assignee','status','pending','2018-06-28 00:33:16',5,5,'broker','role','broker',5,0),(24,'assignee','status','complete','2018-06-28 00:33:16',2,3,'administrator','role','administrator',9,14),(25,'step','ended','complete','2018-06-28 00:33:16',2,3,'0','','',9,631),(26,'step','started','','2018-06-28 00:33:16',2,3,'0','','',10,0),(27,'assignee','status','pending','2018-06-28 00:33:16',2,3,'shop_manager','role','shop_manager',10,0),(28,'assignee','status','approved','2018-06-28 00:36:21',5,5,'broker','role','broker',5,185),(29,'assignee','status','approved','2018-06-28 00:36:21',5,5,'broker','role','broker',5,0),(30,'step','ended','approved','2018-06-28 00:36:21',5,5,'0','','',5,185),(31,'workflow','ended','approved','2018-06-28 00:36:21',5,5,'0','','',0,185),(32,'assignee','status','approved','2018-06-28 00:36:41',7,4,'broker','role','broker',4,836),(33,'assignee','status','approved','2018-06-28 00:36:41',7,4,'broker','role','broker',4,0),(34,'step','ended','approved','2018-06-28 00:36:41',7,4,'0','','',4,836),(35,'step','started','','2018-06-28 00:36:41',7,4,'0','','',7,0),(36,'assignee','status','pending','2018-06-28 00:36:41',7,4,'shop_manager','role','shop_manager',7,0),(37,'workflow','started','','2018-06-28 00:40:10',1,6,'0','','',0,0),(38,'step','started','','2018-06-28 00:40:10',1,6,'0','','',11,0),(39,'workflow','started','','2018-06-28 00:40:10',2,7,'0','','',0,0),(40,'step','started','','2018-06-28 00:40:10',2,7,'0','','',8,0),(41,'assignee','status','pending','2018-06-28 00:40:10',2,7,'customer','role','customer',8,0),(42,'assignee','status','pending','2018-06-28 00:40:10',2,7,'administrator','role','administrator',8,0),(43,'step','ended','complete','2018-06-28 00:40:10',1,6,'0','','',11,0),(44,'workflow','ended','complete','2018-06-28 00:40:10',1,6,'0','','',0,0),(45,'workflow','started','','2018-06-28 00:41:34',7,8,'0','','',0,0),(46,'step','started','','2018-06-28 00:41:34',7,8,'0','','',4,0),(47,'assignee','status','pending','2018-06-28 00:41:34',7,8,'broker','role','broker',4,0),(48,'assignee','status','complete','2018-06-28 00:41:34',2,7,'customer','role','customer',8,84),(49,'step','ended','complete','2018-06-28 00:41:34',2,7,'0','','',8,84),(50,'step','started','','2018-06-28 00:41:34',2,7,'0','','',9,0),(51,'assignee','status','pending','2018-06-28 00:41:34',2,7,'broker','role','broker',9,0),(52,'assignee','status','pending','2018-06-28 00:41:34',2,7,'administrator','role','administrator',9,0),(53,'workflow','started','','2018-06-28 00:49:22',1,9,'0','','',0,0),(54,'step','started','','2018-06-28 00:49:22',1,9,'0','','',11,0),(55,'workflow','started','','2018-06-28 00:49:22',2,10,'0','','',0,0),(56,'step','started','','2018-06-28 00:49:22',2,10,'0','','',8,0),(57,'assignee','status','pending','2018-06-28 00:49:22',2,10,'customer','role','customer',8,0),(58,'assignee','status','pending','2018-06-28 00:49:22',2,10,'administrator','role','administrator',8,0),(59,'step','ended','complete','2018-06-28 00:49:22',1,9,'0','','',11,0),(60,'workflow','ended','complete','2018-06-28 00:49:22',1,9,'0','','',0,0),(61,'workflow','cancelled','','2018-06-28 00:51:26',2,10,'0','','',0,0),(62,'workflow','cancelled','','2018-06-28 00:51:32',2,7,'0','','',0,0),(63,'assignee','status','approved','2018-06-28 01:00:23',7,8,'broker','role','broker',4,1129),(64,'assignee','status','approved','2018-06-28 01:00:23',7,8,'broker','role','broker',4,0),(65,'step','ended','approved','2018-06-28 01:00:23',7,8,'0','','',4,1129),(66,'step','started','','2018-06-28 01:00:23',7,8,'0','','',7,0),(67,'assignee','status','pending','2018-06-28 01:00:23',7,8,'shop_manager','role','shop_manager',7,0),(68,'workflow','started','','2018-06-28 01:01:11',5,11,'0','','',0,0),(69,'step','started','','2018-06-28 01:01:11',5,11,'0','','',5,0),(70,'assignee','status','pending','2018-06-28 01:01:11',5,11,'broker','role','broker',5,0),(71,'assignee','status','complete','2018-06-28 01:01:27',7,4,'shop_manager','role','shop_manager',7,1486),(72,'assignee','status','complete','2018-06-28 01:01:27',7,4,'shop_manager','role','shop_manager',7,0),(73,'step','ended','complete','2018-06-28 01:01:27',7,4,'0','','',7,1486),(74,'step','started','','2018-06-28 01:01:27',7,4,'0','','',4,0),(75,'assignee','status','pending','2018-06-28 01:01:27',7,4,'broker','role','broker',4,0),(76,'assignee','status','complete','2018-06-28 01:01:42',7,8,'shop_manager','role','shop_manager',7,79),(77,'assignee','status','complete','2018-06-28 01:01:42',7,8,'shop_manager','role','shop_manager',7,0),(78,'step','ended','complete','2018-06-28 01:01:42',7,8,'0','','',7,79),(79,'step','started','','2018-06-28 01:01:42',7,8,'0','','',4,0),(80,'assignee','status','pending','2018-06-28 01:01:42',7,8,'broker','role','broker',4,0),(81,'workflow','started','','2018-06-28 01:01:55',5,12,'0','','',0,0),(82,'step','started','','2018-06-28 01:01:55',5,12,'0','','',5,0),(83,'assignee','status','pending','2018-06-28 01:01:55',5,12,'broker','role','broker',5,0),(84,'workflow','cancelled','','2018-06-28 01:02:19',5,12,'0','','',0,0),(85,'workflow','cancelled','','2018-06-28 01:02:29',5,11,'0','','',0,0),(86,'workflow','cancelled','','2018-06-28 01:02:41',7,8,'0','','',0,0),(87,'workflow','cancelled','','2018-06-28 01:02:50',7,4,'0','','',0,0),(88,'workflow','cancelled','','2018-06-28 01:02:59',2,3,'0','','',0,0),(89,'workflow','started','','2018-06-28 01:17:00',1,13,'0','','',0,0),(90,'step','started','','2018-06-28 01:17:00',1,13,'0','','',11,0),(91,'workflow','started','','2018-06-28 01:17:00',2,14,'0','','',0,0),(92,'step','started','','2018-06-28 01:17:00',2,14,'0','','',8,0),(93,'assignee','status','pending','2018-06-28 01:17:00',2,14,'customer','role','customer',8,0),(94,'assignee','status','pending','2018-06-28 01:17:00',2,14,'administrator','role','administrator',8,0),(95,'step','ended','complete','2018-06-28 01:17:03',1,13,'0','','',11,3),(96,'workflow','ended','complete','2018-06-28 01:17:03',1,13,'0','','',0,3),(97,'workflow','started','','2018-06-28 01:17:35',7,15,'0','','',0,0),(98,'step','started','','2018-06-28 01:17:35',7,15,'0','','',4,0),(99,'assignee','status','pending','2018-06-28 01:17:35',7,15,'broker','role','broker',4,0),(100,'assignee','status','pending','2018-06-28 01:17:35',7,15,'administrator','role','administrator',4,0),(101,'assignee','status','approved','2018-06-28 01:18:35',7,15,'administrator','role','administrator',4,60),(102,'assignee','status','approved','2018-06-28 01:18:35',7,15,'administrator','role','administrator',4,0),(103,'assignee','status','approved','2018-06-28 01:19:37',7,15,'broker','role','broker',4,122),(104,'assignee','status','approved','2018-06-28 01:19:37',7,15,'broker','role','broker',4,0),(105,'step','ended','approved','2018-06-28 01:19:39',7,15,'0','','',4,124),(106,'workflow','ended','approved','2018-06-28 01:19:39',7,15,'0','','',0,126),(107,'workflow','started','','2018-06-28 01:23:35',7,16,'0','','',0,0),(108,'step','started','','2018-06-28 01:23:35',7,16,'0','','',4,0),(109,'assignee','status','pending','2018-06-28 01:23:35',7,16,'broker','role','broker',4,0),(110,'assignee','status','pending','2018-06-28 01:23:35',7,16,'administrator','role','administrator',4,0),(111,'assignee','status','approved','2018-06-28 01:23:42',7,16,'administrator','role','administrator',4,7),(112,'assignee','status','approved','2018-06-28 01:23:42',7,16,'administrator','role','administrator',4,0),(113,'assignee','status','approved','2018-06-28 01:24:30',7,16,'broker','role','broker',4,55),(114,'assignee','status','approved','2018-06-28 01:24:30',7,16,'broker','role','broker',4,0),(115,'step','ended','approved','2018-06-28 01:24:31',7,16,'0','','',4,56),(116,'workflow','ended','approved','2018-06-28 01:24:31',7,16,'0','','',0,58),(117,'assignee','status','removed','2018-06-28 01:25:25',2,14,'administrator','role','administrator',8,0),(118,'workflow','started','','2018-06-28 01:29:18',7,17,'0','','',0,0),(119,'step','started','','2018-06-28 01:29:18',7,17,'0','','',4,0),(120,'assignee','status','pending','2018-06-28 01:29:18',7,17,'broker','role','broker',4,0),(121,'assignee','status','pending','2018-06-28 01:29:18',7,17,'administrator','role','administrator',4,0),(122,'assignee','status','approved','2018-06-28 01:30:04',7,17,'administrator','role','administrator',4,46),(123,'assignee','status','approved','2018-06-28 01:30:04',7,17,'administrator','role','administrator',4,0),(124,'assignee','status','approved','2018-06-28 01:30:17',7,17,'broker','role','broker',4,59),(125,'assignee','status','approved','2018-06-28 01:30:17',7,17,'broker','role','broker',4,0),(126,'step','ended','approved','2018-06-28 01:30:19',7,17,'0','','',4,61),(127,'workflow','ended','approved','2018-06-28 01:30:19',7,17,'0','','',0,63),(128,'workflow','cancelled','','2018-06-28 01:33:58',2,14,'0','','',0,0),(129,'workflow','started','','2018-06-28 01:34:12',1,18,'0','','',0,0),(130,'step','started','','2018-06-28 01:34:12',1,18,'0','','',11,0),(131,'workflow','started','','2018-06-28 01:34:12',2,19,'0','','',0,0),(132,'step','started','','2018-06-28 01:34:12',2,19,'0','','',8,0),(133,'assignee','status','pending','2018-06-28 01:34:12',2,19,'customer','role','customer',8,0),(134,'step','ended','complete','2018-06-28 01:34:12',1,18,'0','','',11,0),(135,'workflow','ended','complete','2018-06-28 01:34:12',1,18,'0','','',0,0),(136,'workflow','started','','2018-06-28 01:34:30',7,20,'0','','',0,0),(137,'step','started','','2018-06-28 01:34:30',7,20,'0','','',4,0),(138,'assignee','status','pending','2018-06-28 01:34:30',7,20,'broker','role','broker',4,0),(139,'assignee','status','pending','2018-06-28 01:34:30',7,20,'administrator','role','administrator',4,0),(140,'assignee','status','approved','2018-06-28 01:34:45',7,20,'broker','role','broker',4,15),(141,'assignee','status','approved','2018-06-28 01:34:45',7,20,'broker','role','broker',4,0),(142,'assignee','status','approved','2018-06-28 01:34:53',7,20,'administrator','role','administrator',4,23),(143,'assignee','status','approved','2018-06-28 01:34:53',7,20,'administrator','role','administrator',4,0),(144,'step','ended','approved','2018-06-28 01:34:55',7,20,'0','','',4,25),(145,'workflow','ended','approved','2018-06-28 01:34:55',7,20,'0','','',0,27),(146,'workflow','started','','2018-06-28 01:40:15',7,21,'0','','',0,0),(147,'step','started','','2018-06-28 01:40:15',7,21,'0','','',4,0),(148,'assignee','status','pending','2018-06-28 01:40:15',7,21,'broker','role','broker',4,0),(149,'assignee','status','pending','2018-06-28 01:40:15',7,21,'administrator','role','administrator',4,0),(150,'assignee','status','approved','2018-06-28 01:40:37',7,21,'broker','role','broker',4,22),(151,'assignee','status','approved','2018-06-28 01:40:37',7,21,'broker','role','broker',4,0),(152,'assignee','status','approved','2018-06-28 01:40:52',7,21,'administrator','role','administrator',4,37),(153,'assignee','status','approved','2018-06-28 01:40:52',7,21,'administrator','role','administrator',4,0),(154,'step','ended','approved','2018-06-28 01:40:54',7,21,'0','','',4,39),(155,'workflow','ended','approved','2018-06-28 01:40:54',7,21,'0','','',0,41),(156,'workflow','started','','2018-06-28 01:45:12',7,22,'0','','',0,0),(157,'step','started','','2018-06-28 01:45:12',7,22,'0','','',4,0),(158,'assignee','status','pending','2018-06-28 01:45:12',7,22,'broker','role','broker',4,0),(159,'assignee','status','pending','2018-06-28 01:45:12',7,22,'administrator','role','administrator',4,0),(160,'assignee','status','approved','2018-06-28 01:49:35',7,22,'administrator','role','administrator',4,263),(161,'assignee','status','approved','2018-06-28 01:49:35',7,22,'administrator','role','administrator',4,0),(162,'step','ended','approved','2018-06-28 01:49:37',7,22,'0','','',4,265),(163,'workflow','ended','approved','2018-06-28 01:49:37',7,22,'0','','',0,267),(164,'workflow','started','','2018-06-28 01:51:29',7,23,'0','','',0,0),(165,'step','started','','2018-06-28 01:51:29',7,23,'0','','',4,0),(166,'assignee','status','pending','2018-06-28 01:51:29',7,23,'broker','role','broker',4,0),(167,'assignee','status','pending','2018-06-28 01:51:30',7,23,'administrator','role','administrator',4,0),(168,'assignee','status','approved','2018-06-28 01:51:48',7,23,'administrator','role','administrator',4,18),(169,'assignee','status','approved','2018-06-28 01:51:48',7,23,'administrator','role','administrator',4,0),(170,'step','ended','approved','2018-06-28 01:51:50',7,23,'0','','',4,21),(171,'workflow','ended','approved','2018-06-28 01:51:50',7,23,'0','','',0,23),(172,'workflow','started','','2018-06-28 01:52:43',7,24,'0','','',0,0),(173,'step','started','','2018-06-28 01:52:43',7,24,'0','','',4,0),(174,'assignee','status','pending','2018-06-28 01:52:43',7,24,'broker','role','broker',4,0),(175,'assignee','status','pending','2018-06-28 01:52:43',7,24,'administrator','role','administrator',4,0),(176,'workflow','started','','2018-06-28 01:52:52',7,25,'0','','',0,0),(177,'step','started','','2018-06-28 01:52:52',7,25,'0','','',4,0),(178,'assignee','status','pending','2018-06-28 01:52:52',7,25,'broker','role','broker',4,0),(179,'assignee','status','pending','2018-06-28 01:52:52',7,25,'administrator','role','administrator',4,0),(180,'assignee','status','approved','2018-06-28 01:53:02',7,24,'administrator','role','administrator',4,19),(181,'assignee','status','approved','2018-06-28 01:53:02',7,24,'administrator','role','administrator',4,0),(182,'step','ended','approved','2018-06-28 01:53:04',7,24,'0','','',4,21),(183,'workflow','ended','approved','2018-06-28 01:53:04',7,24,'0','','',0,23),(184,'assignee','status','approved','2018-06-28 01:53:31',7,25,'administrator','role','administrator',4,39),(185,'assignee','status','approved','2018-06-28 01:53:31',7,25,'administrator','role','administrator',4,0),(186,'step','ended','approved','2018-06-28 01:53:33',7,25,'0','','',4,41),(187,'workflow','ended','approved','2018-06-28 01:53:33',7,25,'0','','',0,43),(188,'workflow','started','','2018-06-28 01:54:06',7,26,'0','','',0,0),(189,'step','started','','2018-06-28 01:54:06',7,26,'0','','',4,0),(190,'assignee','status','pending','2018-06-28 01:54:06',7,26,'broker','role','broker',4,0),(191,'assignee','status','pending','2018-06-28 01:54:06',7,26,'administrator','role','administrator',4,0),(192,'assignee','status','approved','2018-06-28 01:54:12',7,26,'administrator','role','administrator',4,6),(193,'assignee','status','approved','2018-06-28 01:54:12',7,26,'administrator','role','administrator',4,0),(194,'step','ended','approved','2018-06-28 01:54:13',7,26,'0','','',4,7),(195,'workflow','ended','approved','2018-06-28 01:54:13',7,26,'0','','',0,8),(196,'workflow','started','','2018-06-28 01:54:38',7,27,'0','','',0,0),(197,'step','started','','2018-06-28 01:54:38',7,27,'0','','',4,0),(198,'assignee','status','pending','2018-06-28 01:54:38',7,27,'broker','role','broker',4,0),(199,'assignee','status','pending','2018-06-28 01:54:38',7,27,'administrator','role','administrator',4,0),(200,'assignee','status','approved','2018-06-28 01:54:45',7,27,'administrator','role','administrator',4,7),(201,'assignee','status','approved','2018-06-28 01:54:45',7,27,'administrator','role','administrator',4,0),(202,'step','ended','approved','2018-06-28 01:54:46',7,27,'0','','',4,8),(203,'workflow','ended','approved','2018-06-28 01:54:46',7,27,'0','','',0,11),(204,'workflow','started','','2018-06-28 01:58:22',7,28,'0','','',0,0),(205,'step','started','','2018-06-28 01:58:22',7,28,'0','','',4,0),(206,'assignee','status','pending','2018-06-28 01:58:22',7,28,'broker','role','broker',4,0),(207,'assignee','status','pending','2018-06-28 01:58:22',7,28,'administrator','role','administrator',4,0),(208,'assignee','status','complete','2018-06-28 01:58:22',2,19,'customer','role','customer',8,1450),(209,'assignee','status','approved','2018-06-28 02:00:09',7,28,'administrator','role','administrator',4,107),(210,'assignee','status','approved','2018-06-28 02:00:09',7,28,'administrator','role','administrator',4,0),(211,'step','ended','approved','2018-06-28 02:00:11',7,28,'0','','',4,109),(212,'workflow','ended','approved','2018-06-28 02:00:11',7,28,'0','','',0,111),(213,'workflow','cancelled','','2018-06-28 02:01:39',2,19,'0','','',0,0),(214,'workflow','started','','2018-06-28 02:01:49',1,29,'0','','',0,0),(215,'step','started','','2018-06-28 02:01:49',1,29,'0','','',11,0),(216,'workflow','started','','2018-06-28 02:01:49',2,30,'0','','',0,0),(217,'step','started','','2018-06-28 02:01:49',2,30,'0','','',8,0),(218,'assignee','status','pending','2018-06-28 02:01:49',2,30,'customer','role','customer',8,0),(219,'step','ended','complete','2018-06-28 02:01:51',1,29,'0','','',11,2),(220,'workflow','ended','complete','2018-06-28 02:01:51',1,29,'0','','',0,2),(221,'workflow','started','','2018-06-28 02:02:38',7,31,'0','','',0,0),(222,'step','started','','2018-06-28 02:02:38',7,31,'0','','',4,0),(223,'assignee','status','pending','2018-06-28 02:02:38',7,31,'broker','role','broker',4,0),(224,'assignee','status','pending','2018-06-28 02:02:38',7,31,'administrator','role','administrator',4,0),(225,'assignee','status','complete','2018-06-28 02:02:38',2,30,'customer','role','customer',8,49),(226,'assignee','status','approved','2018-06-28 02:03:07',7,31,'administrator','role','administrator',4,29),(227,'assignee','status','approved','2018-06-28 02:03:07',7,31,'administrator','role','administrator',4,0),(228,'step','ended','approved','2018-06-28 02:03:09',7,31,'0','','',4,31),(229,'workflow','ended','approved','2018-06-28 02:03:09',7,31,'0','','',0,34),(230,'step','ended','complete','2018-06-28 02:03:09',2,30,'0','','',8,80),(231,'step','started','','2018-06-28 02:03:09',2,30,'0','','',9,0),(232,'assignee','status','pending','2018-06-28 02:03:09',2,30,'supplier','role','supplier',9,0),(233,'workflow','started','','2018-06-28 02:08:26',6,32,'0','','',0,0),(234,'step','started','','2018-06-28 02:08:26',6,32,'0','','',2,0),(235,'assignee','status','pending','2018-06-28 02:08:26',6,32,'customer','role','customer',2,0),(236,'assignee','status','pending','2018-06-28 02:08:28',6,32,'administrator','role','administrator',2,0),(237,'assignee','status','complete','2018-06-28 02:08:28',2,30,'supplier','role','supplier',9,319),(238,'assignee','status','complete','2018-06-28 02:09:17',6,32,'administrator','role','administrator',2,49),(239,'assignee','status','complete','2018-06-28 02:09:17',6,32,'administrator','role','administrator',2,0),(240,'step','ended','complete','2018-06-28 02:09:17',6,32,'0','','',2,51),(241,'step','started','','2018-06-28 02:09:17',6,32,'0','','',3,0),(242,'assignee','status','pending','2018-06-28 02:09:17',6,32,'broker','role','broker',3,0),(243,'assignee','status','pending','2018-06-28 02:09:19',6,32,'administrator','role','administrator',3,0),(244,'assignee','status','approved','2018-06-28 02:09:25',6,32,'administrator','role','administrator',3,6),(245,'assignee','status','approved','2018-06-28 02:09:25',6,32,'administrator','role','administrator',3,0),(246,'step','ended','approved','2018-06-28 02:09:27',6,32,'0','','',3,10),(247,'workflow','ended','approved','2018-06-28 02:09:27',6,32,'0','','',0,63),(248,'step','ended','complete','2018-06-28 02:09:27',2,30,'0','','',9,378),(249,'step','started','','2018-06-28 02:09:27',2,30,'0','','',10,0),(250,'assignee','status','pending','2018-06-28 02:09:27',2,30,'shop_manager','role','shop_manager',10,0),(251,'workflow','started','','2018-06-28 02:10:26',5,33,'0','','',0,0),(252,'step','started','','2018-06-28 02:10:26',5,33,'0','','',5,0),(253,'assignee','status','pending','2018-06-28 02:10:26',5,33,'broker','role','broker',5,0),(254,'assignee','status','pending','2018-06-28 02:10:26',5,33,'administrator','role','administrator',5,0),(255,'assignee','status','complete','2018-06-28 02:10:26',2,30,'shop_manager','role','shop_manager',10,59),(256,'assignee','status','approved','2018-06-28 02:10:41',5,33,'administrator','role','administrator',5,15),(257,'assignee','status','approved','2018-06-28 02:10:41',5,33,'administrator','role','administrator',5,0),(258,'step','ended','approved','2018-06-28 02:10:41',5,33,'0','','',5,15),(259,'workflow','ended','approved','2018-06-28 02:10:41',5,33,'0','','',0,15),(260,'step','ended','complete','2018-06-28 02:10:41',2,30,'0','','',10,74),(261,'workflow','ended','complete','2018-06-28 02:10:41',2,30,'0','','',0,532),(262,'workflow','started','','2018-06-28 02:14:30',1,34,'0','','',0,0),(263,'step','started','','2018-06-28 02:14:30',1,34,'0','','',11,0),(264,'workflow','started','','2018-06-28 02:14:30',2,35,'0','','',0,0),(265,'step','started','','2018-06-28 02:14:30',2,35,'0','','',8,0),(266,'assignee','status','pending','2018-06-28 02:14:30',2,35,'customer','role','customer',8,0),(267,'step','ended','complete','2018-06-28 02:14:32',1,34,'0','','',11,2),(268,'workflow','ended','complete','2018-06-28 02:14:32',1,34,'0','','',0,2),(269,'workflow','started','','2018-06-28 02:18:14',7,36,'0','','',0,0),(270,'step','started','','2018-06-28 02:18:14',7,36,'0','','',4,0),(271,'assignee','status','pending','2018-06-28 02:18:14',7,36,'broker','role','broker',4,0),(272,'assignee','status','pending','2018-06-28 02:18:14',7,36,'administrator','role','administrator',4,0),(273,'assignee','status','complete','2018-06-28 02:18:14',2,35,'customer','role','customer',8,224),(274,'assignee','status','approved','2018-06-28 02:18:51',7,36,'administrator','role','administrator',4,37),(275,'assignee','status','approved','2018-06-28 02:18:51',7,36,'administrator','role','administrator',4,0),(276,'step','ended','approved','2018-06-28 02:18:53',7,36,'0','','',4,39),(277,'workflow','ended','approved','2018-06-28 02:18:53',7,36,'0','','',0,41),(278,'step','ended','complete','2018-06-28 02:18:53',2,35,'0','','',8,263),(279,'step','started','','2018-06-28 02:18:53',2,35,'0','','',9,0),(280,'assignee','status','pending','2018-06-28 02:18:53',2,35,'supplier','role','supplier',9,0),(281,'assignee','status','pending','2018-06-28 02:20:22',2,35,'broker','role','broker',9,0),(282,'assignee','status','removed','2018-06-28 02:20:22',2,35,'supplier','role','supplier',9,0),(283,'workflow','started','','2018-06-28 02:22:17',6,37,'0','','',0,0),(284,'step','started','','2018-06-28 02:22:17',6,37,'0','','',2,0),(285,'assignee','status','pending','2018-06-28 02:22:17',6,37,'supplier','role','supplier',2,0),(286,'assignee','status','pending','2018-06-28 02:22:19',6,37,'administrator','role','administrator',2,0),(287,'assignee','status','complete','2018-06-28 02:22:19',2,35,'broker','role','broker',9,117),(288,'assignee','status','complete','2018-06-28 02:23:20',6,37,'supplier','role','supplier',2,63),(289,'assignee','status','complete','2018-06-28 02:23:20',6,37,'supplier','role','supplier',2,0),(290,'step','ended','complete','2018-06-28 02:23:20',6,37,'0','','',2,63),(291,'step','started','','2018-06-28 02:23:20',6,37,'0','','',3,0),(292,'assignee','status','pending','2018-06-28 02:23:20',6,37,'broker','role','broker',3,0),(293,'assignee','status','pending','2018-06-28 02:23:22',6,37,'administrator','role','administrator',3,0),(294,'assignee','status','approved','2018-06-28 02:23:59',6,37,'broker','role','broker',3,39),(295,'assignee','status','approved','2018-06-28 02:23:59',6,37,'broker','role','broker',3,0),(296,'step','ended','approved','2018-06-28 02:24:01',6,37,'0','','',3,41),(297,'workflow','ended','approved','2018-06-28 02:24:01',6,37,'0','','',0,106),(298,'step','ended','complete','2018-06-28 02:24:01',2,35,'0','','',9,308),(299,'step','started','','2018-06-28 02:24:01',2,35,'0','','',10,0),(300,'assignee','status','pending','2018-06-28 02:24:01',2,35,'shop_manager','role','shop_manager',10,0),(301,'workflow','started','','2018-06-28 02:24:44',5,38,'0','','',0,0),(302,'step','started','','2018-06-28 02:24:44',5,38,'0','','',5,0),(303,'assignee','status','pending','2018-06-28 02:24:45',5,38,'broker','role','broker',5,0),(304,'assignee','status','pending','2018-06-28 02:24:45',5,38,'administrator','role','administrator',5,0),(305,'assignee','status','complete','2018-06-28 02:24:45',2,35,'shop_manager','role','shop_manager',10,44),(306,'assignee','status','rejected','2018-06-28 02:25:23',5,38,'broker','role','broker',5,38),(307,'assignee','status','rejected','2018-06-28 02:25:23',5,38,'broker','role','broker',5,0),(308,'step','ended','rejected','2018-06-28 02:25:24',5,38,'0','','',5,40),(309,'step','started','','2018-06-28 02:25:24',5,38,'0','','',6,0),(310,'assignee','status','pending','2018-06-28 02:25:24',5,38,'customer','role','customer',6,0),(311,'assignee','status','pending','2018-06-28 02:25:25',5,38,'administrator','role','administrator',6,0),(312,'assignee','status','pending','2018-06-28 02:26:21',5,38,'shop_manager','role','shop_manager',6,0),(313,'assignee','status','removed','2018-06-28 02:26:21',5,38,'customer','role','customer',6,0),(314,'assignee','status','removed','2018-06-28 02:26:21',5,38,'administrator','role','administrator',6,0),(315,'assignee','status','complete','2018-06-28 02:26:40',5,38,'shop_manager','role','shop_manager',6,19),(316,'assignee','status','complete','2018-06-28 02:26:40',5,38,'shop_manager','role','shop_manager',6,0),(317,'step','ended','complete','2018-06-28 02:26:40',5,38,'0','','',6,76),(318,'step','started','','2018-06-28 02:26:40',5,38,'0','','',5,0),(319,'assignee','status','pending','2018-06-28 02:26:40',5,38,'broker','role','broker',5,0),(320,'assignee','status','pending','2018-06-28 02:26:40',5,38,'administrator','role','administrator',5,0),(321,'assignee','status','approved','2018-06-28 02:27:14',5,38,'broker','role','broker',5,34),(322,'assignee','status','approved','2018-06-28 02:27:14',5,38,'broker','role','broker',5,0),(323,'step','ended','approved','2018-06-28 02:27:14',5,38,'0','','',5,34),(324,'workflow','ended','approved','2018-06-28 02:27:14',5,38,'0','','',0,150),(325,'step','ended','complete','2018-06-28 02:27:14',2,35,'0','','',10,193),(326,'workflow','ended','complete','2018-06-28 02:27:14',2,35,'0','','',0,764),(327,'workflow','started','','2018-06-28 03:00:19',1,39,'0','','',0,0),(328,'step','started','','2018-06-28 03:00:19',1,39,'0','','',11,0),(329,'workflow','started','','2018-06-28 03:00:20',2,40,'0','','',0,0),(330,'step','started','','2018-06-28 03:00:20',2,40,'0','','',8,0),(331,'assignee','status','pending','2018-06-28 03:00:20',2,40,'customer','role','customer',8,0),(332,'step','ended','complete','2018-06-28 03:00:22',1,39,'0','','',11,3),(333,'workflow','ended','complete','2018-06-28 03:00:22',1,39,'0','','',0,3),(334,'workflow','started','','2018-06-28 03:00:54',7,41,'0','','',0,0),(335,'step','started','','2018-06-28 03:00:54',7,41,'0','','',4,0),(336,'assignee','status','pending','2018-06-28 03:00:54',7,41,'broker','role','broker',4,0),(337,'assignee','status','pending','2018-06-28 03:00:54',7,41,'administrator','role','administrator',4,0),(338,'assignee','status','complete','2018-06-28 03:00:54',2,40,'customer','role','customer',8,34),(339,'assignee','status','approved','2018-06-28 03:35:09',7,41,'broker','role','broker',4,2055),(340,'assignee','status','approved','2018-06-28 03:35:09',7,41,'broker','role','broker',4,0),(341,'step','ended','approved','2018-06-28 03:35:11',7,41,'0','','',4,2057),(342,'workflow','ended','approved','2018-06-28 03:35:11',7,41,'0','','',0,2059),(343,'step','ended','complete','2018-06-28 03:35:11',2,40,'0','','',8,2091),(344,'step','started','','2018-06-28 03:35:11',2,40,'0','','',9,0),(345,'assignee','status','pending','2018-06-28 03:35:11',2,40,'broker','role','broker',9,0),(346,'workflow','started','','2018-06-28 03:35:34',6,42,'0','','',0,0),(347,'step','started','','2018-06-28 03:35:34',6,42,'0','','',2,0),(348,'assignee','status','pending','2018-06-28 03:35:34',6,42,'supplier','role','supplier',2,0),(349,'assignee','status','pending','2018-06-28 03:35:36',6,42,'administrator','role','administrator',2,0),(350,'assignee','status','complete','2018-06-28 03:35:36',2,40,'broker','role','broker',9,25),(351,'assignee','status','complete','2018-06-28 03:36:04',6,42,'supplier','role','supplier',2,29),(352,'assignee','status','complete','2018-06-28 03:36:04',6,42,'supplier','role','supplier',2,0),(353,'step','ended','complete','2018-06-28 03:36:04',6,42,'0','','',2,30),(354,'step','started','','2018-06-28 03:36:04',6,42,'0','','',3,0),(355,'assignee','status','pending','2018-06-28 03:36:04',6,42,'broker','role','broker',3,0),(356,'assignee','status','pending','2018-06-28 03:36:05',6,42,'administrator','role','administrator',3,0),(357,'assignee','status','approved','2018-06-28 03:36:23',6,42,'administrator','role','administrator',3,18),(358,'assignee','status','approved','2018-06-28 03:36:23',6,42,'administrator','role','administrator',3,0),(359,'step','ended','approved','2018-06-28 03:36:25',6,42,'0','','',3,21),(360,'workflow','ended','approved','2018-06-28 03:36:25',6,42,'0','','',0,53),(361,'step','ended','complete','2018-06-28 03:36:25',2,40,'0','','',9,74),(362,'step','started','','2018-06-28 03:36:25',2,40,'0','','',10,0),(363,'assignee','status','pending','2018-06-28 03:36:25',2,40,'shop_manager','role','shop_manager',10,0),(364,'workflow','started','','2018-06-28 07:17:47',1,43,'0','','',0,0),(365,'step','started','','2018-06-28 07:17:47',1,43,'0','','',12,0),(366,'workflow','started','','2018-06-28 07:17:48',8,44,'0','','',0,0),(367,'step','started','','2018-06-28 07:17:48',8,44,'0','','',13,0),(368,'assignee','status','pending','2018-06-28 07:17:48',8,44,'customer','role','customer',13,0),(369,'step','ended','complete','2018-06-28 07:17:50',1,43,'0','','',12,3),(370,'workflow','ended','complete','2018-06-28 07:17:50',1,43,'0','','',0,3),(371,'assignee','status','complete','2018-06-28 07:18:33',8,44,'customer','role','customer',13,45),(372,'assignee','status','complete','2018-06-28 07:18:33',8,44,'customer','role','customer',13,0),(373,'step','ended','complete','2018-06-28 07:18:33',8,44,'0','','',13,45),(374,'step','started','','2018-06-28 07:18:33',8,44,'0','','',14,0),(375,'assignee','status','pending','2018-06-28 07:18:33',8,44,'broker','role','broker',14,0),(376,'assignee','status','rejected','2018-06-28 07:19:01',8,44,'broker','role','broker',14,28),(377,'assignee','status','rejected','2018-06-28 07:19:01',8,44,'broker','role','broker',14,0),(378,'step','ended','rejected','2018-06-28 07:19:01',8,44,'0','','',14,28),(379,'step','started','','2018-06-28 07:19:01',8,44,'0','','',15,0),(380,'assignee','status','pending','2018-06-28 07:19:01',8,44,'broker','role','broker',15,0),(381,'workflow','cancelled','','2018-06-28 07:19:35',8,44,'0','','',0,0),(382,'workflow','started','','2018-06-28 07:21:44',1,45,'0','','',0,0),(383,'step','started','','2018-06-28 07:21:44',1,45,'0','','',11,0),(384,'workflow','started','','2018-06-28 07:21:44',2,46,'0','','',0,0),(385,'step','started','','2018-06-28 07:21:44',2,46,'0','','',8,0),(386,'assignee','status','pending','2018-06-28 07:21:44',2,46,'customer','role','customer',8,0),(387,'step','ended','complete','2018-06-28 07:21:46',1,45,'0','','',11,2),(388,'workflow','ended','complete','2018-06-28 07:21:46',1,45,'0','','',0,2),(389,'workflow','started','','2018-06-28 07:21:50',1,47,'0','','',0,0),(390,'step','started','','2018-06-28 07:21:50',1,47,'0','','',11,0),(391,'workflow','started','','2018-06-28 07:21:50',2,48,'0','','',0,0),(392,'step','started','','2018-06-28 07:21:50',2,48,'0','','',8,0),(393,'assignee','status','pending','2018-06-28 07:21:50',2,48,'customer','role','customer',8,0),(394,'step','ended','complete','2018-06-28 07:21:52',1,47,'0','','',11,2),(395,'workflow','ended','complete','2018-06-28 07:21:52',1,47,'0','','',0,2),(396,'workflow','started','','2018-06-28 07:22:48',1,49,'0','','',0,0),(397,'step','started','','2018-06-28 07:22:48',1,49,'0','','',12,0),(398,'workflow','started','','2018-06-28 07:22:48',8,50,'0','','',0,0),(399,'step','started','','2018-06-28 07:22:48',8,50,'0','','',13,0),(400,'assignee','status','pending','2018-06-28 07:22:48',8,50,'customer','role','customer',13,0),(401,'step','ended','complete','2018-06-28 07:22:50',1,49,'0','','',12,2),(402,'workflow','ended','complete','2018-06-28 07:22:50',1,49,'0','','',0,2),(403,'assignee','status','complete','2018-06-28 07:26:03',8,50,'customer','role','customer',13,195),(404,'assignee','status','complete','2018-06-28 07:26:03',8,50,'customer','role','customer',13,0),(405,'step','ended','complete','2018-06-28 07:26:03',8,50,'0','','',13,195),(406,'step','started','','2018-06-28 07:26:03',8,50,'0','','',14,0),(407,'assignee','status','pending','2018-06-28 07:26:03',8,50,'broker','role','broker',14,0),(408,'assignee','status','rejected','2018-06-28 07:26:15',8,50,'broker','role','broker',14,12),(409,'assignee','status','rejected','2018-06-28 07:26:15',8,50,'broker','role','broker',14,0),(410,'step','ended','rejected','2018-06-28 07:26:15',8,50,'0','','',14,12),(411,'step','started','','2018-06-28 07:26:15',8,50,'0','','',13,0),(412,'assignee','status','pending','2018-06-28 07:26:15',8,50,'customer','role','customer',13,0),(413,'assignee','status','complete','2018-06-28 07:26:33',8,50,'customer','role','customer',13,18),(414,'assignee','status','complete','2018-06-28 07:26:33',8,50,'customer','role','customer',13,0),(415,'step','ended','complete','2018-06-28 07:26:33',8,50,'0','','',13,18),(416,'step','started','','2018-06-28 07:26:33',8,50,'0','','',14,0),(417,'assignee','status','pending','2018-06-28 07:26:33',8,50,'broker','role','broker',14,0),(418,'assignee','status','approved','2018-06-28 07:26:44',8,50,'broker','role','broker',14,11),(419,'assignee','status','approved','2018-06-28 07:26:44',8,50,'broker','role','broker',14,0),(420,'step','ended','approved','2018-06-28 07:26:44',8,50,'0','','',14,11),(421,'step','started','','2018-06-28 07:26:44',8,50,'0','','',15,0),(422,'assignee','status','pending','2018-06-28 07:26:44',8,50,'broker','role','broker',15,0),(423,'assignee','status','complete','2018-06-28 07:27:39',8,50,'broker','role','broker',15,55),(424,'assignee','status','complete','2018-06-28 07:27:39',8,50,'broker','role','broker',15,0),(425,'step','ended','complete','2018-06-28 07:27:39',8,50,'0','','',15,55),(426,'step','started','','2018-06-28 07:27:39',8,50,'0','','',16,0),(427,'assignee','status','pending','2018-06-28 07:27:39',8,50,'customer','role','customer',16,0),(428,'assignee','status','complete','2018-06-28 07:27:57',8,50,'customer','role','customer',16,18),(429,'assignee','status','complete','2018-06-28 07:27:57',8,50,'customer','role','customer',16,0),(430,'step','ended','complete','2018-06-28 07:27:57',8,50,'0','','',16,18),(431,'step','started','','2018-06-28 07:27:57',8,50,'0','','',17,0),(432,'assignee','status','pending','2018-06-28 07:27:57',8,50,'broker','role','broker',17,0),(433,'assignee','status','approved','2018-06-28 07:28:14',8,50,'broker','role','broker',17,17),(434,'assignee','status','approved','2018-06-28 07:28:14',8,50,'broker','role','broker',17,0),(435,'step','ended','approved','2018-06-28 07:28:15',8,50,'0','','',17,18),(436,'step','started','','2018-06-28 07:28:15',8,50,'0','','',19,0),(437,'assignee','status','pending','2018-06-28 07:28:15',8,50,'broker','role','broker',19,0),(438,'assignee','status','approved','2018-06-28 07:28:37',8,50,'broker','role','broker',19,22),(439,'assignee','status','approved','2018-06-28 07:28:37',8,50,'broker','role','broker',19,0),(440,'step','ended','approved','2018-06-28 07:28:37',8,50,'0','','',19,22),(441,'workflow','ended','approved','2018-06-28 07:28:37',8,50,'0','','',0,349),(442,'assignee','status','pending','2018-06-28 07:30:27',2,40,'customer','role','customer',10,0),(443,'assignee','status','removed','2018-06-28 07:30:27',2,40,'shop_manager','role','shop_manager',10,0),(444,'workflow','started','','2018-06-28 11:39:03',1,51,'0','','',0,0),(445,'step','started','','2018-06-28 11:39:03',1,51,'0','','',12,0),(446,'workflow','started','','2018-06-28 11:39:03',8,52,'0','','',0,0),(447,'step','started','','2018-06-28 11:39:03',8,52,'0','','',13,0),(448,'assignee','status','pending','2018-06-28 11:39:03',8,52,'customer','role','customer',13,0),(449,'step','ended','complete','2018-06-28 11:39:05',1,51,'0','','',12,2),(450,'workflow','ended','complete','2018-06-28 11:39:05',1,51,'0','','',0,2),(451,'workflow','started','','2018-06-28 11:42:03',1,53,'0','','',0,0),(452,'step','started','','2018-06-28 11:42:03',1,53,'0','','',11,0),(453,'workflow','started','','2018-06-28 11:42:03',2,54,'0','','',0,0),(454,'step','started','','2018-06-28 11:42:04',2,54,'0','','',8,0),(455,'assignee','status','pending','2018-06-28 11:42:04',2,54,'customer','role','customer',8,0),(456,'step','ended','complete','2018-06-28 11:42:06',1,53,'0','','',11,3),(457,'workflow','ended','complete','2018-06-28 11:42:06',1,53,'0','','',0,3); /*!40000 ALTER TABLE `wp_gravityflow_activity_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_groups_capability` -- DROP TABLE IF EXISTS `wp_groups_capability`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_groups_capability` ( `capability_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `capability` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `class` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `object` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`capability_id`), UNIQUE KEY `capability` (`capability`(100)), KEY `capability_kco` (`capability`(20),`class`(20),`object`(20)) ) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_groups_capability` -- LOCK TABLES `wp_groups_capability` WRITE; /*!40000 ALTER TABLE `wp_groups_capability` DISABLE KEYS */; INSERT INTO `wp_groups_capability` VALUES (1,'switch_themes',NULL,NULL,NULL,NULL),(2,'edit_themes',NULL,NULL,NULL,NULL),(3,'activate_plugins',NULL,NULL,NULL,NULL),(4,'edit_plugins',NULL,NULL,NULL,NULL),(5,'edit_users',NULL,NULL,NULL,NULL),(6,'edit_files',NULL,NULL,NULL,NULL),(7,'manage_options',NULL,NULL,NULL,NULL),(8,'moderate_comments',NULL,NULL,NULL,NULL),(9,'manage_categories',NULL,NULL,NULL,NULL),(10,'manage_links',NULL,NULL,NULL,NULL),(11,'upload_files',NULL,NULL,NULL,NULL),(12,'import',NULL,NULL,NULL,NULL),(13,'unfiltered_html',NULL,NULL,NULL,NULL),(14,'edit_posts',NULL,NULL,NULL,NULL),(15,'edit_others_posts',NULL,NULL,NULL,NULL),(16,'edit_published_posts',NULL,NULL,NULL,NULL),(17,'publish_posts',NULL,NULL,NULL,NULL),(18,'edit_pages',NULL,NULL,NULL,NULL),(19,'read',NULL,NULL,NULL,NULL),(20,'level_10',NULL,NULL,NULL,NULL),(21,'level_9',NULL,NULL,NULL,NULL),(22,'level_8',NULL,NULL,NULL,NULL),(23,'level_7',NULL,NULL,NULL,NULL),(24,'level_6',NULL,NULL,NULL,NULL),(25,'level_5',NULL,NULL,NULL,NULL),(26,'level_4',NULL,NULL,NULL,NULL),(27,'level_3',NULL,NULL,NULL,NULL),(28,'level_2',NULL,NULL,NULL,NULL),(29,'level_1',NULL,NULL,NULL,NULL),(30,'level_0',NULL,NULL,NULL,NULL),(31,'edit_others_pages',NULL,NULL,NULL,NULL),(32,'edit_published_pages',NULL,NULL,NULL,NULL),(33,'publish_pages',NULL,NULL,NULL,NULL),(34,'delete_pages',NULL,NULL,NULL,NULL),(35,'delete_others_pages',NULL,NULL,NULL,NULL),(36,'delete_published_pages',NULL,NULL,NULL,NULL),(37,'delete_posts',NULL,NULL,NULL,NULL),(38,'delete_others_posts',NULL,NULL,NULL,NULL),(39,'delete_published_posts',NULL,NULL,NULL,NULL),(40,'delete_private_posts',NULL,NULL,NULL,NULL),(41,'edit_private_posts',NULL,NULL,NULL,NULL),(42,'read_private_posts',NULL,NULL,NULL,NULL),(43,'delete_private_pages',NULL,NULL,NULL,NULL),(44,'edit_private_pages',NULL,NULL,NULL,NULL),(45,'read_private_pages',NULL,NULL,NULL,NULL),(46,'delete_users',NULL,NULL,NULL,NULL),(47,'create_users',NULL,NULL,NULL,NULL),(48,'unfiltered_upload',NULL,NULL,NULL,NULL),(49,'edit_dashboard',NULL,NULL,NULL,NULL),(50,'update_plugins',NULL,NULL,NULL,NULL),(51,'delete_plugins',NULL,NULL,NULL,NULL),(52,'install_plugins',NULL,NULL,NULL,NULL),(53,'update_themes',NULL,NULL,NULL,NULL),(54,'install_themes',NULL,NULL,NULL,NULL),(55,'update_core',NULL,NULL,NULL,NULL),(56,'list_users',NULL,NULL,NULL,NULL),(57,'remove_users',NULL,NULL,NULL,NULL),(58,'promote_users',NULL,NULL,NULL,NULL),(59,'edit_theme_options',NULL,NULL,NULL,NULL),(60,'delete_themes',NULL,NULL,NULL,NULL),(61,'export',NULL,NULL,NULL,NULL),(62,'manage_woocommerce',NULL,NULL,NULL,NULL),(63,'view_woocommerce_reports',NULL,NULL,NULL,NULL),(64,'edit_product',NULL,NULL,NULL,NULL),(65,'read_product',NULL,NULL,NULL,NULL),(66,'delete_product',NULL,NULL,NULL,NULL),(67,'edit_products',NULL,NULL,NULL,NULL),(68,'edit_others_products',NULL,NULL,NULL,NULL),(69,'publish_products',NULL,NULL,NULL,NULL),(70,'read_private_products',NULL,NULL,NULL,NULL),(71,'delete_products',NULL,NULL,NULL,NULL),(72,'delete_private_products',NULL,NULL,NULL,NULL),(73,'delete_published_products',NULL,NULL,NULL,NULL),(74,'delete_others_products',NULL,NULL,NULL,NULL),(75,'edit_private_products',NULL,NULL,NULL,NULL),(76,'edit_published_products',NULL,NULL,NULL,NULL),(77,'manage_product_terms',NULL,NULL,NULL,NULL),(78,'edit_product_terms',NULL,NULL,NULL,NULL),(79,'delete_product_terms',NULL,NULL,NULL,NULL),(80,'assign_product_terms',NULL,NULL,NULL,NULL),(81,'edit_shop_order',NULL,NULL,NULL,NULL),(82,'read_shop_order',NULL,NULL,NULL,NULL),(83,'delete_shop_order',NULL,NULL,NULL,NULL),(84,'edit_shop_orders',NULL,NULL,NULL,NULL),(85,'edit_others_shop_orders',NULL,NULL,NULL,NULL),(86,'publish_shop_orders',NULL,NULL,NULL,NULL),(87,'read_private_shop_orders',NULL,NULL,NULL,NULL),(88,'delete_shop_orders',NULL,NULL,NULL,NULL),(89,'delete_private_shop_orders',NULL,NULL,NULL,NULL),(90,'delete_published_shop_orders',NULL,NULL,NULL,NULL),(91,'delete_others_shop_orders',NULL,NULL,NULL,NULL),(92,'edit_private_shop_orders',NULL,NULL,NULL,NULL),(93,'edit_published_shop_orders',NULL,NULL,NULL,NULL),(94,'manage_shop_order_terms',NULL,NULL,NULL,NULL),(95,'edit_shop_order_terms',NULL,NULL,NULL,NULL),(96,'delete_shop_order_terms',NULL,NULL,NULL,NULL),(97,'assign_shop_order_terms',NULL,NULL,NULL,NULL),(98,'edit_shop_coupon',NULL,NULL,NULL,NULL),(99,'read_shop_coupon',NULL,NULL,NULL,NULL),(100,'delete_shop_coupon',NULL,NULL,NULL,NULL),(101,'edit_shop_coupons',NULL,NULL,NULL,NULL),(102,'edit_others_shop_coupons',NULL,NULL,NULL,NULL),(103,'publish_shop_coupons',NULL,NULL,NULL,NULL),(104,'read_private_shop_coupons',NULL,NULL,NULL,NULL),(105,'delete_shop_coupons',NULL,NULL,NULL,NULL),(106,'delete_private_shop_coupons',NULL,NULL,NULL,NULL),(107,'delete_published_shop_coupons',NULL,NULL,NULL,NULL),(108,'delete_others_shop_coupons',NULL,NULL,NULL,NULL),(109,'edit_private_shop_coupons',NULL,NULL,NULL,NULL),(110,'edit_published_shop_coupons',NULL,NULL,NULL,NULL),(111,'manage_shop_coupon_terms',NULL,NULL,NULL,NULL),(112,'edit_shop_coupon_terms',NULL,NULL,NULL,NULL),(113,'delete_shop_coupon_terms',NULL,NULL,NULL,NULL),(114,'assign_shop_coupon_terms',NULL,NULL,NULL,NULL),(115,'manage_capabilities',NULL,NULL,NULL,NULL),(116,'do_the_broking',NULL,NULL,NULL,NULL),(117,'gravityflow_inbox',NULL,NULL,NULL,NULL),(118,'groups_access',NULL,NULL,NULL,NULL),(119,'groups_admin_groups',NULL,NULL,NULL,NULL),(120,'groups_admin_options',NULL,NULL,NULL,NULL),(121,'groups_restrict_access',NULL,NULL,NULL,NULL),(122,'gravityflow_status',NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `wp_groups_capability` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_groups_group` -- DROP TABLE IF EXISTS `wp_groups_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_groups_group` ( `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `parent_id` bigint(20) DEFAULT NULL, `creator_id` bigint(20) DEFAULT NULL, `datetime` datetime DEFAULT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL, `description` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`group_id`), UNIQUE KEY `group_n` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_groups_group` -- LOCK TABLES `wp_groups_group` WRITE; /*!40000 ALTER TABLE `wp_groups_group` DISABLE KEYS */; INSERT INTO `wp_groups_group` VALUES (1,NULL,1,'2018-07-08 22:04:19','Registered',NULL),(2,NULL,1,'2018-07-08 22:28:12','Coor Nordic',NULL),(3,NULL,1,'2018-07-08 22:28:38','Coor SE',NULL),(5,NULL,1,'2018-07-08 22:30:17','Coor Kista',NULL),(6,NULL,1,'2018-07-09 03:26:41','Broker Organization',NULL); /*!40000 ALTER TABLE `wp_groups_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_groups_group_capability` -- DROP TABLE IF EXISTS `wp_groups_group_capability`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_groups_group_capability` ( `group_id` bigint(20) unsigned NOT NULL, `capability_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`group_id`,`capability_id`), KEY `group_capability_cg` (`capability_id`,`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_groups_group_capability` -- LOCK TABLES `wp_groups_group_capability` WRITE; /*!40000 ALTER TABLE `wp_groups_group_capability` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_groups_group_capability` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_groups_user_capability` -- DROP TABLE IF EXISTS `wp_groups_user_capability`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_groups_user_capability` ( `user_id` bigint(20) unsigned NOT NULL, `capability_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`user_id`,`capability_id`), KEY `user_capability_cu` (`capability_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_groups_user_capability` -- LOCK TABLES `wp_groups_user_capability` WRITE; /*!40000 ALTER TABLE `wp_groups_user_capability` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_groups_user_capability` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_groups_user_group` -- DROP TABLE IF EXISTS `wp_groups_user_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_groups_user_group` ( `user_id` bigint(20) unsigned NOT NULL, `group_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`user_id`,`group_id`), KEY `user_group_gu` (`group_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_groups_user_group` -- LOCK TABLES `wp_groups_user_group` WRITE; /*!40000 ALTER TABLE `wp_groups_user_group` DISABLE KEYS */; INSERT INTO `wp_groups_user_group` VALUES (1,1),(2,1),(2,6),(3,1),(4,1),(5,1),(5,2),(5,3),(5,5),(6,1),(6,3),(6,5),(7,1),(7,5); /*!40000 ALTER TABLE `wp_groups_user_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailchimp_carts` -- DROP TABLE IF EXISTS `wp_mailchimp_carts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailchimp_carts` ( `id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_id` int(11) DEFAULT NULL, `cart` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `created_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailchimp_carts` -- LOCK TABLES `wp_mailchimp_carts` WRITE; /*!40000 ALTER TABLE `wp_mailchimp_carts` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailchimp_carts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=3802 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://localhost','yes'),(2,'home','http://localhost','yes'),(3,'blogname','WooC','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','almira@saburly.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','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:180:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:20:\"gravityformsapi/(.*)\";s:33:\"index.php?gfapi_route=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"amn_smtp/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"amn_smtp/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"amn_smtp/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"amn_smtp/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"amn_smtp/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"amn_smtp/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"amn_smtp/([^/]+)/embed/?$\";s:41:\"index.php?amn_smtp=$matches[1]&embed=true\";s:29:\"amn_smtp/([^/]+)/trackback/?$\";s:35:\"index.php?amn_smtp=$matches[1]&tb=1\";s:37:\"amn_smtp/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?amn_smtp=$matches[1]&paged=$matches[2]\";s:44:\"amn_smtp/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?amn_smtp=$matches[1]&cpage=$matches[2]\";s:34:\"amn_smtp/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?amn_smtp=$matches[1]&wc-api=$matches[3]\";s:40:\"amn_smtp/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"amn_smtp/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"amn_smtp/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?amn_smtp=$matches[1]&page=$matches[2]\";s:25:\"amn_smtp/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"amn_smtp/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"amn_smtp/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"amn_smtp/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"amn_smtp/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"amn_smtp/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:26:\"wcj-my-products(/(.*))?/?$\";s:38:\"index.php?&wcj-my-products=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:34:\"(.?.+?)/wcj-my-products(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&wcj-my-products=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:18:{i:0;s:36:\"gravityforms-master/gravityforms.php\";i:1;s:14:\"basic-auth.php\";i:2;s:48:\"capability-manager-enhanced/capsman-enhanced.php\";i:3;s:34:\"gravityflow-master/gravityflow.php\";i:4;s:49:\"gravityflowformconnector-master/formconnector.php\";i:5;s:17:\"groups/groups.php\";i:6;s:19:\"jetpack/jetpack.php\";i:7;s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";i:8;s:33:\"multiple-roles/multiple-roles.php\";i:9;s:14:\"types/wpcf.php\";i:10;s:41:\"user-organizations/user-organizations.php\";i:11;s:31:\"view-admin-as/view-admin-as.php\";i:12;s:57:\"wiaas-extended-restful-api/wiaas-extended-restful-api.php\";i:13;s:43:\"woocommerce-jetpack/woocommerce-jetpack.php\";i:14;s:45:\"woocommerce-services/woocommerce-services.php\";i:15;s:27:\"woocommerce/woocommerce.php\";i:16;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:17;s:33:\"wp-user-groups/wp-user-groups.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:4:{i:0;s:57:\"/var/www/wordpress/wp-content/themes/storefront/style.css\";i:1;s:64:\"/var/www/wordpress/wp-content/themes/storefront/content-none.php\";i:2;s:68:\"/var/www/wordpress/wp-content/themes/storefront/content-homepage.php\";i:4;s:0:\"\";}','no'),(40,'template','storefront','yes'),(41,'stylesheet','storefront','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','0','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','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:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:2:{s:45:\"woocommerce-services/woocommerce-services.php\";a:2:{i:0;s:17:\"WC_Connect_Loader\";i:1;s:16:\"plugin_uninstall\";}s:43:\"my-custom-functions/my-custom-functions.php\";s:26:\"spacexchimp_p001_uninstall\";}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'initial_db_version','38590','yes'),(93,'wp_user_roles','a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:133:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:19:\"manage_capabilities\";b:1;s:14:\"do_the_broking\";b:1;s:17:\"gravityflow_inbox\";b:1;s:13:\"groups_access\";b:1;s:19:\"groups_admin_groups\";b:1;s:20:\"groups_admin_options\";b:1;s:22:\"groups_restrict_access\";b:1;s:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:7:{s:4:\"read\";b:1;s:17:\"gravityflow_inbox\";b:1;s:18:\"gravityflow_status\";b:1;s:7:\"level_0\";b:1;s:14:\"do_the_broking\";b:1;s:21:\"read_private_products\";b:1;s:24:\"read_private_shop_orders\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"broker\";a:2:{s:4:\"name\";s:6:\"Broker\";s:12:\"capabilities\";a:2:{s:14:\"do_the_broking\";b:1;s:7:\"level_0\";b:1;}}s:15:\"commercial_lead\";a:2:{s:4:\"name\";s:15:\"Commercial Lead\";s:12:\"capabilities\";a:0:{}}s:8:\"supplier\";a:2:{s:4:\"name\";s:8:\"Supplier\";s:12:\"capabilities\";a:2:{s:14:\"do_the_broking\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(94,'fresh_site','0','yes'),(95,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(96,'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'),(97,'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'),(98,'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'),(99,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(100,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(101,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'cron','a:17:{i:1531132045;a:1:{s:16:\"gravityflow_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:15:\"fifteen_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1531132163;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1531132253;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:1531132967;a:1:{s:29:\"wcj_download_tcpdf_fonts_hook\";a:1:{s:32:\"26b69dc9b9c77e4c1647111635ada6f2\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:1:{i:0;s:6:\"hourly\";}s:8:\"interval\";i:3600;}}}i:1531133030;a:1:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1531133040;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1531133434;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:1531143830;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1531154630;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1531164653;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:1531178757;a:1:{s:17:\"gravityforms_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:1531180800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1531207878;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:1531209111;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:1533211200;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}i:1533807022;a:1:{s:25:\"otgs_send_components_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),(111,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1528703429;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(115,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.7.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-4.9.7.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.7-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.7-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.9.7-partial-6.zip\";s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.7\";s:7:\"version\";s:5:\"4.9.7\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:5:\"4.9.6\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.7.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-4.9.7.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.7-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.7-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.9.7-partial-6.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.7-rollback-6.zip\";}s:7:\"current\";s:5:\"4.9.7\";s:7:\"version\";s:5:\"4.9.7\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:5:\"4.9.6\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1531128563;s:15:\"version_checked\";s:5:\"4.9.6\";s:12:\"translations\";a:0:{}}','no'),(125,'can_compress_scripts','0','no'),(140,'recently_activated','a:0:{}','yes'),(147,'woocommerce_store_address','Bhills 1','yes'),(148,'woocommerce_store_address_2','','yes'),(149,'woocommerce_store_city','Beverly Hills','yes'),(150,'woocommerce_default_country','US:CA','yes'),(151,'woocommerce_store_postcode','90210','yes'),(152,'woocommerce_allowed_countries','all','yes'),(153,'woocommerce_all_except_countries','','yes'),(154,'woocommerce_specific_allowed_countries','','yes'),(155,'woocommerce_ship_to_countries','','yes'),(156,'woocommerce_specific_ship_to_countries','','yes'),(157,'woocommerce_default_customer_address','geolocation','yes'),(158,'woocommerce_calc_taxes','yes','yes'),(159,'woocommerce_enable_coupons','yes','yes'),(160,'woocommerce_calc_discounts_sequentially','no','no'),(161,'woocommerce_currency','USD','yes'),(162,'woocommerce_currency_pos','left','yes'),(163,'woocommerce_price_thousand_sep',',','yes'),(164,'woocommerce_price_decimal_sep','.','yes'),(165,'woocommerce_price_num_decimals','2','yes'),(166,'woocommerce_shop_page_id','5','yes'),(167,'woocommerce_cart_redirect_after_add','no','yes'),(168,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(169,'woocommerce_weight_unit','kg','yes'),(170,'woocommerce_dimension_unit','cm','yes'),(171,'woocommerce_enable_reviews','yes','yes'),(172,'woocommerce_review_rating_verification_label','yes','no'),(173,'woocommerce_review_rating_verification_required','no','no'),(174,'woocommerce_enable_review_rating','yes','yes'),(175,'woocommerce_review_rating_required','yes','no'),(176,'woocommerce_manage_stock','yes','yes'),(177,'woocommerce_hold_stock_minutes','60','no'),(178,'woocommerce_notify_low_stock','yes','no'),(179,'woocommerce_notify_no_stock','yes','no'),(180,'woocommerce_stock_email_recipient','duplingnedim@gmail.com','no'),(181,'woocommerce_notify_low_stock_amount','2','no'),(182,'woocommerce_notify_no_stock_amount','0','yes'),(183,'woocommerce_hide_out_of_stock_items','no','yes'),(184,'woocommerce_stock_format','','yes'),(185,'woocommerce_file_download_method','force','no'),(186,'woocommerce_downloads_require_login','no','no'),(187,'woocommerce_downloads_grant_access_after_payment','yes','no'),(188,'woocommerce_prices_include_tax','no','yes'),(189,'woocommerce_tax_based_on','shipping','yes'),(190,'woocommerce_shipping_tax_class','inherit','yes'),(191,'woocommerce_tax_round_at_subtotal','no','yes'),(192,'woocommerce_tax_classes','Reduced rate\nZero rate','yes'),(193,'woocommerce_tax_display_shop','excl','yes'),(194,'woocommerce_tax_display_cart','excl','yes'),(195,'woocommerce_price_display_suffix','','yes'),(196,'woocommerce_tax_total_display','itemized','no'),(197,'woocommerce_enable_shipping_calc','yes','no'),(198,'woocommerce_shipping_cost_requires_address','no','yes'),(199,'woocommerce_ship_to_destination','billing','no'),(200,'woocommerce_shipping_debug_mode','no','yes'),(201,'woocommerce_enable_guest_checkout','yes','no'),(202,'woocommerce_enable_checkout_login_reminder','no','no'),(203,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(204,'woocommerce_enable_myaccount_registration','no','no'),(205,'woocommerce_registration_generate_username','yes','no'),(206,'woocommerce_registration_generate_password','yes','no'),(207,'woocommerce_erasure_request_removes_order_data','no','no'),(208,'woocommerce_erasure_request_removes_download_data','no','no'),(209,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(210,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(211,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(212,'woocommerce_trash_pending_orders','','no'),(213,'woocommerce_trash_failed_orders','','no'),(214,'woocommerce_trash_cancelled_orders','','no'),(215,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(216,'woocommerce_email_from_name','WooC','no'),(217,'woocommerce_email_from_address','duplingnedim@gmail.com','no'),(218,'woocommerce_email_header_image','','no'),(219,'woocommerce_email_footer_text','{site_title}','no'),(220,'woocommerce_email_base_color','#96588a','no'),(221,'woocommerce_email_background_color','#f7f7f7','no'),(222,'woocommerce_email_body_background_color','#ffffff','no'),(223,'woocommerce_email_text_color','#3c3c3c','no'),(224,'woocommerce_cart_page_id','6','yes'),(225,'woocommerce_checkout_page_id','7','yes'),(226,'woocommerce_myaccount_page_id','8','yes'),(227,'woocommerce_terms_page_id','','no'),(228,'woocommerce_force_ssl_checkout','no','yes'),(229,'woocommerce_unforce_ssl_checkout','no','yes'),(230,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(231,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(232,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(233,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(234,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(235,'woocommerce_myaccount_orders_endpoint','orders','yes'),(236,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(237,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(238,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(239,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(240,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(241,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(242,'woocommerce_logout_endpoint','customer-logout','yes'),(243,'woocommerce_api_enabled','yes','yes'),(244,'woocommerce_single_image_width','600','yes'),(245,'woocommerce_thumbnail_image_width','300','yes'),(246,'woocommerce_checkout_highlight_required_fields','yes','yes'),(247,'woocommerce_demo_store','no','no'),(248,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(249,'current_theme_supports_woocommerce','yes','yes'),(250,'woocommerce_queue_flush_rewrite_rules','no','yes'),(251,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(253,'default_product_cat','15','yes'),(258,'woocommerce_admin_notices','a:0:{}','yes'),(259,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(260,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(261,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(262,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(263,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(264,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(265,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(266,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(267,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(268,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(269,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(270,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(271,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(278,'woocommerce_meta_box_errors','a:0:{}','yes'),(291,'woocommerce_product_type','both','yes'),(292,'woocommerce_allow_tracking','no','yes'),(293,'woocommerce_stripe_settings','a:3:{s:7:\"enabled\";s:2:\"no\";s:14:\"create_account\";b:0;s:5:\"email\";b:0;}','yes'),(294,'woocommerce_ppec_paypal_settings','a:2:{s:16:\"reroute_requests\";b:0;s:5:\"email\";b:0;}','yes'),(295,'woocommerce_cheque_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(296,'woocommerce_bacs_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(297,'woocommerce_cod_settings','a:1:{s:7:\"enabled\";s:3:\"yes\";}','yes'),(298,'_transient_shipping-transient-version','1528703397','yes'),(299,'woocommerce_setup_automated_taxes','1','yes'),(309,'current_theme','Storefront','yes'),(310,'theme_mods_storefront','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(311,'theme_switched','','yes'),(312,'storefront_nux_fresh_site','0','yes'),(313,'woocommerce_catalog_rows','4','yes'),(314,'woocommerce_catalog_columns','3','yes'),(315,'woocommerce_maybe_regenerate_images_hash','27acde77266b4d2a3491118955cb3f66','yes'),(319,'jetpack_activated','1','yes'),(322,'jetpack_activation_source','a:2:{i:0;s:7:\"unknown\";i:1;N;}','yes'),(323,'jetpack_sync_settings_disable','0','yes'),(324,'_transient_timeout_jetpack_file_data_6.2.1','1532770631','no'),(325,'_transient_jetpack_file_data_6.2.1','a:57:{s:32:\"c22c48d7cfe9d38dff2864cfea64636a\";a:15:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";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:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"fb5c4814ddc3946a3f22cc838fcb2af3\";a:15:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5813eda53235a9a81a69b1f6a4a15db6\";a:15:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"7ef4ca32a1c84fc10ef50c8293cae5df\";a:15:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"c5331bfc2648dfeeebe486736d79a72c\";a:15:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";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:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"707c77d2e8cb0c12d094e5423c8beda8\";a:15:{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:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";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:\"cd499b1678cfe3aabfc8ca0d3eb7e8b9\";a:15:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";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:\"7d266d6546645f42cf52a66387699c50\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"5d436678d5e010ac6b0f157aa1021554\";a:15:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"092b94702bb483a5472578283c2103d6\";a:15:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";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:17:\"business, premium\";}s:32:\"6bd77e09440df2b63044cf8cb7963773\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"ee1a10e2ef5733ab19eb1eb552d5ecb3\";a:15:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";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:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"284c08538b0bdc266315b2cf80b9c044\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"0ce5c3ac630dea9f41215e48bb0f52f3\";a:15:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"87da2858d4f9cadb6a44fdcf32e8d2b5\";a:15:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"004962cb7cb9ec2b64769ac4df509217\";a:15:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";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:\"7f408184bee8850d439c01322867e72c\";a:15:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:16:\"Lazy load images\";s:14:\"jumpstart_desc\";s:0:\"\";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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:33:\"mobile, theme, performance, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ad914b747f382ae918ed3b37077d4a1\";a:15:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"b347263e3470979442ebf0514e41e893\";a:15:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from wordpress.com.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";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:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"589982245aa6f495b72ab7cf57a1a48e\";a:15:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"d3bec8e063d637bc285018241b783725\";a:15:{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:14:\"jumpstart_desc\";s:0:\"\";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:\"6ab1c3e749bcfba2dedbaebe6c9fc614\";a:15:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.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:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b7be7da643ec641511839ecc6afb6def\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"d54f83ff429a8a37ace796de98459411\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"0f8b373fa12c825162c0b0bc20b8bbdd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"5d7b0750cb34a4a72a44fa67790de639\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"f07fde8db279ffb0116c727df72c6374\";a:15:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";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:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"136a5445a49150db75472862f3d3aefb\";a:15:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"395d8ae651afabb54d1e98440674b384\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"4484ac68583fbbaab0ef698cdc986950\";a:15:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:29:\"Serve images from our servers\";s:14:\"jumpstart_desc\";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:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6f30193afa5b1360e3fa2676501b5e3a\";a:15:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";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:\"3e9f8bd3755d92e8e5d06966a957beb8\";a:15:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";s:14:\"jumpstart_desc\";s:0:\"\";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:65:\"security, secure, protection, botnet, brute force, protect, login\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0cacc8ab2145ad11cb54d181a98aa550\";a:15:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a528c2f803a92c5c2effa67cd33ab33a\";a:15:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";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:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"329b8efce059081d46936ece0c6736b3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"5fdd42d482712fbdaf000b28ea7adce9\";a:15:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c5096ef610018e98a8bcccfbea4471e\";a:15:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";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:6:\"search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"0d81dd7df3ad2f245e84fd4fb66bf829\";a:15:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:0:\"\";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:17:\"business, premium\";}s:32:\"32aaa676b3b6c9f3ef22430e1e0bca24\";a:15:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"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:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"948472b453cda59b38bb7c37af889af0\";a:15:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";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:\"7d00a6ca0a79fbe893275aaf6ed6ae42\";a:15:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";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:\"372e711395f23c466e04d4fd07f73099\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"2ea687cec293289a2a3e5f0459e79768\";a:15:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";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:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2fe9dc2c7389d4f0825a0b23bc8b19d1\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"e7cf8a7e0f151ccf7cbdc6d8f118f316\";a:15:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";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:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"34fb073ed896af853ed48bd5739240cb\";a:15:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"8de0dfff24a17cf0fa0011dfc691a3f3\";a:15:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";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:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4744f348db095538d3edcacb0ed99c89\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"d89db0d934b39f86065ff58e73594070\";a:15:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"01987a7ba5e19786f2992501add8181a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:\"20459cc462babfc5a82adf6b34f6e8b1\";a:15:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"836245eb0a8f0c5272542305a88940c1\";a:15:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";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:\"e94397a5c47c1be995eff613e65a674f\";a:15:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";s:14:\"jumpstart_desc\";s:0:\"\";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:25:\"video, videos, videopress\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"032cd76e08467c732ccb026efda0c9cd\";a:15:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";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:\"9b3e84beedf2e96f1ac5dd6498d2b1aa\";a:15:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";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:3:\"Yes\";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:\"7724fd9600745cf93e37cc09282e1a37\";a:15:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";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:17:\"premium, business\";}s:32:\"5b8f8e5b5a1887e3c0393cb78d5143a3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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'),(326,'jetpack_available_modules','a:1:{s:5:\"6.2.1\";a:43:{s:18:\"after-the-deadline\";s:3:\"1.1\";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: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:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";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:3:\"pwa\";s:5:\"5.6.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:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(327,'jetpack_options','a:4:{s:7:\"version\";s:16:\"6.2.1:1528703434\";s:11:\"old_version\";s:16:\"6.2.1:1528703434\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;}','yes'),(328,'jetpack_testimonial','0','yes'),(329,'do_activate','0','yes'),(335,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1531128617;s:7:\"checked\";a:4:{s:10:\"storefront\";s:5:\"2.3.2\";s:13:\"twentyfifteen\";s:3:\"2.0\";s:15:\"twentyseventeen\";s:3:\"1.6\";s:13:\"twentysixteen\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(339,'jetpack_tos_agreed','1','yes'),(340,'mailchimp_woocommerce_version','2.1.7','no'),(341,'mailchimp-woocommerce','a:0:{}','yes'),(343,'mailchimp-woocommerce-store_id','5b1e29d050ee7','yes'),(344,'jetpack_secrets','a:1:{s:18:\"jetpack_register_1\";a:3:{s:8:\"secret_1\";s:32:\"7bCOBRU6ovn9G6U6PC10qqe0cgzbQXAG\";s:8:\"secret_2\";s:32:\"ZYU6c9oktXoZoeSEjpselSykpFpl9YHB\";s:3:\"exp\";i:1528704040;}}','no'),(345,'wc_connect_options','a:1:{s:12:\"tos_accepted\";b:1;}','yes'),(347,'mailchimp_woocommerce_db_mailchimp_carts','1','no'),(348,'storefront_nux_dismissed','1','yes'),(349,'storefront_nux_guided_tour','1','yes'),(353,'_transient_product_query-transient-version','1530274918','yes'),(355,'product_cat_children','a:0:{}','yes'),(358,'_transient_product-transient-version','1530274918','yes'),(365,'mailchimp_woocommerce_plugin_do_activation_redirect','','yes'),(366,'woocommerce_setup_jetpack_opted_in','1','yes'),(381,'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:0:{}s:6:\"custom\";a:0:{}}}','yes'),(382,'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\";b:0;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(388,'_transient_orders-transient-version','1531095864','yes'),(569,'_transient_timeout_wc_shipping_method_count_1_1528703397','1531470568','no'),(570,'_transient_wc_shipping_method_count_1_1528703397','2','no'),(603,'capsman_version','','yes'),(605,'pp_customized_roles','a:3:{s:6:\"broker\";O:8:\"stdClass\":2:{s:4:\"caps\";a:1:{s:14:\"do_the_broking\";i:1;}s:7:\"plugins\";a:0:{}}s:13:\"administrator\";O:8:\"stdClass\":2:{s:4:\"caps\";a:117:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:19:\"manage_capabilities\";b:1;s:14:\"do_the_broking\";b:1;s:17:\"gravityflow_inbox\";i:1;}s:7:\"plugins\";a:0:{}}s:8:\"customer\";O:8:\"stdClass\":2:{s:4:\"caps\";a:3:{s:4:\"read\";b:1;s:17:\"gravityflow_inbox\";b:1;s:18:\"gravityflow_status\";i:1;}s:7:\"plugins\";a:0:{}}}','no'),(924,'_transient_timeout_wc_product_loop52b31528969325','1531561325','no'),(925,'_transient_wc_product_loop52b31528969325','O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:360;i:1;i:359;i:2;i:358;i:3;i:357;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}','no'),(926,'_transient_timeout_wc_product_loopec531528969325','1531561325','no'),(927,'_transient_wc_product_loopec531528969325','O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:356;i:1;i:355;i:2;i:354;i:3;i:352;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}','no'),(928,'_transient_timeout_wc_product_loop51e01528969325','1531561326','no'),(929,'_transient_wc_product_loop51e01528969325','O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:73;i:1;i:349;i:2;i:350;i:3;i:351;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}','no'),(932,'_transient_timeout_wc_product_loop5e671528969325','1531561326','no'),(933,'_transient_wc_product_loop5e671528969325','O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:360;i:1;i:359;i:2;i:358;i:3;i:357;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}','no'),(934,'_transient_timeout_wc_product_loop8e8f1528969325','1531561326','no'),(935,'_transient_wc_product_loop8e8f1528969325','O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:73;i:1;i:353;i:2;i:354;i:3;i:355;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}','no'),(939,'fed_plugin_version','1.2.14','yes'),(940,'fed_admin_login','a:1:{s:8:\"register\";a:3:{s:4:\"name\";s:9:\"User Role\";s:8:\"position\";i:999;s:4:\"role\";a:0:{}}}','yes'),(941,'fed_admin_settings_post','a:3:{s:11:\"permissions\";a:2:{s:15:\"post_permission\";a:10:{s:13:\"administrator\";s:6:\"Enable\";s:6:\"editor\";s:6:\"Enable\";s:6:\"author\";s:6:\"Enable\";s:11:\"contributor\";s:6:\"Enable\";s:10:\"subscriber\";s:6:\"Enable\";s:8:\"customer\";s:6:\"Enable\";s:12:\"shop_manager\";s:6:\"Enable\";s:6:\"broker\";s:6:\"Enable\";s:15:\"commercial_lead\";s:6:\"Enable\";s:8:\"supplier\";s:6:\"Enable\";}s:21:\"fed_upload_permission\";a:10:{s:13:\"administrator\";s:6:\"Enable\";s:6:\"editor\";s:6:\"Enable\";s:6:\"author\";s:6:\"Enable\";s:11:\"contributor\";s:6:\"Enable\";s:10:\"subscriber\";s:6:\"Enable\";s:8:\"customer\";s:6:\"Enable\";s:12:\"shop_manager\";s:6:\"Enable\";s:6:\"broker\";s:6:\"Enable\";s:15:\"commercial_lead\";s:6:\"Enable\";s:8:\"supplier\";s:6:\"Enable\";}}s:8:\"settings\";a:1:{s:15:\"fed_post_status\";s:7:\"publish\";}s:4:\"menu\";a:3:{s:11:\"rename_post\";s:4:\"Post\";s:13:\"post_position\";i:2;s:14:\"post_menu_icon\";s:15:\"fa fa-file-text\";}}','yes'),(942,'fed_admin_settings_upl','a:1:{s:8:\"settings\";a:3:{s:26:\"fed_upl_change_profile_pic\";s:0:\"\";s:20:\"fed_upl_disable_desc\";s:2:\"no\";s:22:\"fed_upl_no_recent_post\";s:1:\"5\";}}','yes'),(943,'fed_cp_admin_settings','a:1:{s:4:\"post\";a:3:{s:11:\"permissions\";a:2:{s:15:\"post_permission\";a:10:{s:13:\"administrator\";s:6:\"Enable\";s:6:\"editor\";s:6:\"Enable\";s:6:\"author\";s:6:\"Enable\";s:11:\"contributor\";s:6:\"Enable\";s:10:\"subscriber\";s:6:\"Enable\";s:8:\"customer\";s:6:\"Enable\";s:12:\"shop_manager\";s:6:\"Enable\";s:6:\"broker\";s:6:\"Enable\";s:15:\"commercial_lead\";s:6:\"Enable\";s:8:\"supplier\";s:6:\"Enable\";}s:21:\"fed_upload_permission\";a:10:{s:13:\"administrator\";s:6:\"Enable\";s:6:\"editor\";s:6:\"Enable\";s:6:\"author\";s:6:\"Enable\";s:11:\"contributor\";s:6:\"Enable\";s:10:\"subscriber\";s:6:\"Enable\";s:8:\"customer\";s:6:\"Enable\";s:12:\"shop_manager\";s:6:\"Enable\";s:6:\"broker\";s:6:\"Enable\";s:15:\"commercial_lead\";s:6:\"Enable\";s:8:\"supplier\";s:6:\"Enable\";}}s:8:\"settings\";a:1:{s:15:\"fed_post_status\";s:7:\"publish\";}s:4:\"menu\";a:3:{s:11:\"rename_post\";s:4:\"Post\";s:13:\"post_position\";i:2;s:14:\"post_menu_icon\";s:15:\"fa fa-file-text\";}}}','yes'),(953,'_transient_timeout_wc_product_loop040c1528969325','1531567839','no'),(954,'_transient_wc_product_loop040c1528969325','O:8:\"stdClass\":5:{s:3:\"ids\";a:1:{i:0;i:73;}s:5:\"total\";i:1;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:2;s:12:\"current_page\";i:1;}','no'),(955,'_transient_timeout_wc_product_loopa47f1528969325','1531567839','no'),(956,'_transient_wc_product_loopa47f1528969325','O:8:\"stdClass\":5:{s:3:\"ids\";a:1:{i:0;i:73;}s:5:\"total\";i:1;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}','no'),(1016,'spacexchimp_p001_service_info','a:4:{s:7:\"upgrade\";s:4:\"0001\";s:7:\"version\";s:4:\"4.19\";s:11:\"old_version\";s:1:\"0\";s:15:\"activation_date\";i:1529325532;}','yes'),(1220,'gf_db_version','2.3.0.2','yes'),(1221,'rg_form_version','2.3.0.2','yes'),(1222,'gform_enable_background_updates','','yes'),(1223,'gform_pending_installation','','yes'),(1224,'widget_gform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1225,'gravityformsaddon_gravityformswebapi_version','1.0','yes'),(1226,'gform_version_info','a:6:{s:12:\"is_valid_key\";s:1:\"0\";s:15:\"expiration_time\";i:0;s:7:\"version\";s:5:\"1.7.9\";s:3:\"url\";s:0:\"\";s:9:\"offerings\";a:0:{}s:9:\"timestamp\";i:1531078753;}','yes'),(1231,'rg_gforms_enable_akismet','1','yes'),(1232,'rg_gforms_currency','USD','yes'),(1233,'gform_enable_toolbar_menu','1','yes'),(1235,'gravityformsaddon_feed-base_version','0.14','yes'),(1236,'gravityflow_pending_installation','','yes'),(1237,'gravityformsaddon_gravityflow_app_settings','a:4:{s:18:\"background_updates\";b:0;s:10:\"inbox_page\";i:375;s:11:\"status_page\";i:376;s:11:\"submit_page\";i:377;}','yes'),(1238,'gravityformsaddon_gravityflow_version','2.2.3-dev','yes'),(1243,'gravityformsaddon_gravityflowformconnector_version','1.4.1-dev','yes'),(1254,'category_children','a:0:{}','yes'),(1390,'gform_upload_page_slug','a2c2cd9221ccb66','yes'),(1466,'gform_email_count','66','yes'),(1537,'0f116b3c114210ccc8b531055c9da485','a:2:{s:7:\"timeout\";i:1531139369;s:5:\"value\";s:105421:\"{\"new_version\":\"2.2.2\",\"stable_version\":\"2.2.2\",\"name\":\"Gravity Flow\",\"slug\":\"gravityflow\",\"url\":\"https:\\/\\/gravityflow.io\\/downloads\\/gravity-flow\\/?changelog=1\",\"last_updated\":\"1 month ago\",\"homepage\":\"https:\\/\\/gravityflow.io\\/\",\"sections\":{\"description\":\"
Gravity Flow is a business process workflow platform for WordPress.<\\/p>\\n
= Who is it for? =<\\/p>\\n
Gravity Flow is for organisations and departments of any size that need to get a form-based workflow process up and running online quickly with no programming. These processes usually already exist either offline or online but are often inefficiently implemented.<\\/p>\\n
= How does it work? =<\\/p>\\n
An end-user submits a web form which generates an entry. The entry is then passed around between users and systems on an established path until the process is complete. Each user or system in the workflow will add something to the process before allowing the entry to proceed to the next step.<\\/p>\\n
For example, an employee may add additional information and a manager another might add their approval. Connected systems might send an email, add the user to a mailing list, create a user account or send data to an ERP system.<\\/p>\\n
Gravity Flow requires Gravity Forms<\\/a><\\/p>\\n Facebook: Gravity Flow<\\/a><\\/p>\\n Twitter: Gravity Flow<\\/a><\\/p>\\n = Requirements =<\\/p>\\n = Support =<\\/p>\\n If you find any that needs fixing, or if you have any ideas for improvements, please get in touch:\\nhttps:\\/\\/gravityflow.io\\/contact\\/<\\/a><\\/p>\",\"changelog\":\" = 2.2.2 =<\\/p>\\n = 2.2.1 =<\\/p>\\n = 2.2 =<\\/p>\\n = 2.1.1 =<\\/p>\\n = 2.1 =<\\/p>\\n = 2.0.1 =<\\/p>\\n = 2.0.0 =<\\/p>\\n = 1.9.1 =<\\/p>\\n = 1.9.0 =<\\/p>\\n = 1.8.0 =<\\/p>\\n = 1.7 =<\\/p>\\n = 1.6.1 =<\\/p>\\n = 1.6 =<\\/p>\\n = 1.5.0 =<\\/p>\\n Added field mapping to the Outgoing Webhook step.<\\/p>\\n<\\/li>\\n Updated the step type column of the workflow steps list and the step configuration page to indicate when a plugin required by a feed based step type is missing.<\\/p>\\n<\\/li>\\n = 1.4.2.1 =<\\/p>\\n = 1.4.2 =<\\/p>\\n Added Italian translation - thanks to Giacomo Papasidero.<\\/p>\\n<\\/li>\\n Updated the last updated column on the status list to display the date created when the entry has not been updated.<\\/p>\\n<\\/li>\\n = 1.4.1 =<\\/p>\\n Added the gravityflow_bulk_action_status_table filter to allow custom bulk actions to be processed on the status page.\\nExample:\\nadd_filter( \'gravityflow_bulk_action_status_table\', \'filter_gravityflow_bulk_action_status_table\', 10, 4);\\nfunction filter_gravityflow_bulk_action_status_table( $feedback, $bulk_action, $entry_ids, $args ) {\\n\\/\\/ process entries<\\/p>\\n Added the gravityflow_field_filters_status_table filter to allow the field filters to be modified.\\nExample:\\nadd_filter( \'gravityflow_field_filters_status_table\', \'filter_gravityflow_field_filters_status_table\' );\\nfunction filter_gravityflow_field_filters_status_table( $field_filters ) {\\n\\/\\/ Modify the filters\\nreturn $field_filters;\\n}<\\/p>\\n<\\/li>\\n = 1.4 =<\\/p>\\n Added the gravityflow_inbox_entry_detail_pre_process filter to allow the entry detail processing to be aborted.<\\/p>\\n<\\/li>\\n Updated feed interception to use the gform_is_delayed_pre_process_feed filter with GF1.9.14+ or gform_pre_process_feeds filter with GF2.0+.<\\/p>\\n<\\/li>\\n = 1.3.2 =<\\/p>\\n Added the gravityflow_admin_actions_workflow_detail filter to allow the choices in the admin actions drop down on the entry detail page to be modified.\\nExample:\\nadd_filter( \'gravityflow_admin_actions_workflow_detail\', \'filter_admin_actions_workflow_detail\', 10, 5 );\\nfunction filter_admin_actions_workflow_detail( $admin_actions, $current_step, $steps, $form, $entry ) {\\n$admin_actions[] = array( \'label\' => \'your new action\', \'value\' => \'your_new_action\' );<\\/p>\\n }<\\/p>\\n<\\/li>\\n Added the Discussion Field.<\\/p>\\n<\\/li>\\n Updated the styles of the front-end entry detail page when the workflow info and step status are hidden.<\\/p>\\n<\\/li>\\n = 1.3.1 =<\\/p>\\n Added the gravityflow_webhookargs<\\/em>[Form ID] filter immediately after the gravityflow_webhook_args filter.<\\/p>\\n<\\/li>\\n Updated the styles of the workflow detail page for narrow screens to display the entry first and then the info box below.<\\/p>\\n<\\/li>\\n = 1.3 =<\\/p>\\n Added the gravityflow_editable_fields_user_input filter to allow the editable fields array to be modified for the user input step.\\nExample:\\nadd_filter( \'gravityflow_editable_fields_user_input\', \'sh_gravityflow_editable_fields_user_input\', 10, 2);\\nfunction sh_gravityflow_editable_fields_user_input( $editable_fields, $step ){\\n\\/\\/ Use these variable to program your editable fields logic\\n\\/\\/ $entry = $step->get_entry();\\n\\/\\/ $entry_id = $step->get_entry_id();\\n\\/\\/ $form = $step->get_form();\\n\\/\\/ $form_id = $step->get_form_id();<\\/p>\\n Added support for required fields in the User Input step.<\\/p>\\n<\\/li>\\n Updated the auto-update and license check component.<\\/p>\\n<\\/li>\\n = 1.2 =<\\/p>\\n = 1.1.3 =<\\/p>\\n = 1.1.2 =<\\/p>\\n = 1.1.1 =<\\/p>\\n = 1.1 =<\\/p>\\n = 1.0 =<\\/p>\\n Gravity Flow is a business process workflow platform for WordPress.<\\/p>\\n = Who is it for? =<\\/p>\\n Gravity Flow is for organisations and departments of any size that need to get a form-based workflow process up and running online quickly with no programming. These processes usually already exist either offline or online but are often inefficiently implemented.<\\/p>\\n = How does it work? =<\\/p>\\n An end-user submits a web form which generates an entry. The entry is then passed around between users and systems on an established path until the process is complete. Each user or system in the workflow will add something to the process before allowing the entry to proceed to the next step.<\\/p>\\n For example, an employee may add additional information and a manager another might add their approval. Connected systems might send an email, add the user to a mailing list, create a user account or send data to an ERP system.<\\/p>\\n Gravity Flow requires Gravity Forms<\\/a><\\/p>\\n Facebook: Gravity Flow<\\/a><\\/p>\\n Twitter: Gravity Flow<\\/a><\\/p>\\n = Requirements =<\\/p>\\n = Support =<\\/p>\\n If you find any that needs fixing, or if you have any ideas for improvements, please get in touch:\\nhttps:\\/\\/gravityflow.io\\/contact\\/<\\/a><\\/p>\"],\"changelog\":[\" = 2.2.2 =<\\/p>\\n = 2.2.1 =<\\/p>\\n = 2.2 =<\\/p>\\n = 2.1.1 =<\\/p>\\n = 2.1 =<\\/p>\\n = 2.0.1 =<\\/p>\\n = 2.0.0 =<\\/p>\\n = 1.9.1 =<\\/p>\\n = 1.9.0 =<\\/p>\\n = 1.8.0 =<\\/p>\\n = 1.7 =<\\/p>\\n = 1.6.1 =<\\/p>\\n = 1.6 =<\\/p>\\n = 1.5.0 =<\\/p>\\n Added field mapping to the Outgoing Webhook step.<\\/p>\\n<\\/li>\\n Updated the step type column of the workflow steps list and the step configuration page to indicate when a plugin required by a feed based step type is missing.<\\/p>\\n<\\/li>\\n = 1.4.2.1 =<\\/p>\\n = 1.4.2 =<\\/p>\\n Added Italian translation - thanks to Giacomo Papasidero.<\\/p>\\n<\\/li>\\n Updated the last updated column on the status list to display the date created when the entry has not been updated.<\\/p>\\n<\\/li>\\n = 1.4.1 =<\\/p>\\n Added the gravityflow_bulk_action_status_table filter to allow custom bulk actions to be processed on the status page.\\nExample:\\nadd_filter( \'gravityflow_bulk_action_status_table\', \'filter_gravityflow_bulk_action_status_table\', 10, 4);\\nfunction filter_gravityflow_bulk_action_status_table( $feedback, $bulk_action, $entry_ids, $args ) {\\n\\/\\/ process entries<\\/p>\\n Added the gravityflow_field_filters_status_table filter to allow the field filters to be modified.\\nExample:\\nadd_filter( \'gravityflow_field_filters_status_table\', \'filter_gravityflow_field_filters_status_table\' );\\nfunction filter_gravityflow_field_filters_status_table( $field_filters ) {\\n\\/\\/ Modify the filters\\nreturn $field_filters;\\n}<\\/p>\\n<\\/li>\\n = 1.4 =<\\/p>\\n Added the gravityflow_inbox_entry_detail_pre_process filter to allow the entry detail processing to be aborted.<\\/p>\\n<\\/li>\\n Updated feed interception to use the gform_is_delayed_pre_process_feed filter with GF1.9.14+ or gform_pre_process_feeds filter with GF2.0+.<\\/p>\\n<\\/li>\\n = 1.3.2 =<\\/p>\\n Added the gravityflow_admin_actions_workflow_detail filter to allow the choices in the admin actions drop down on the entry detail page to be modified.\\nExample:\\nadd_filter( \'gravityflow_admin_actions_workflow_detail\', \'filter_admin_actions_workflow_detail\', 10, 5 );\\nfunction filter_admin_actions_workflow_detail( $admin_actions, $current_step, $steps, $form, $entry ) {\\n$admin_actions[] = array( \'label\' => \'your new action\', \'value\' => \'your_new_action\' );<\\/p>\\n }<\\/p>\\n<\\/li>\\n Added the Discussion Field.<\\/p>\\n<\\/li>\\n Updated the styles of the front-end entry detail page when the workflow info and step status are hidden.<\\/p>\\n<\\/li>\\n = 1.3.1 =<\\/p>\\n Added the gravityflow_webhookargs<\\/em>[Form ID] filter immediately after the gravityflow_webhook_args filter.<\\/p>\\n<\\/li>\\n Updated the styles of the workflow detail page for narrow screens to display the entry first and then the info box below.<\\/p>\\n<\\/li>\\n = 1.3 =<\\/p>\\n Added the gravityflow_editable_fields_user_input filter to allow the editable fields array to be modified for the user input step.\\nExample:\\nadd_filter( \'gravityflow_editable_fields_user_input\', \'sh_gravityflow_editable_fields_user_input\', 10, 2);\\nfunction sh_gravityflow_editable_fields_user_input( $editable_fields, $step ){\\n\\/\\/ Use these variable to program your editable fields logic\\n\\/\\/ $entry = $step->get_entry();\\n\\/\\/ $entry_id = $step->get_entry_id();\\n\\/\\/ $form = $step->get_form();\\n\\/\\/ $form_id = $step->get_form_id();<\\/p>\\n Added support for required fields in the User Input step.<\\/p>\\n<\\/li>\\n Updated the auto-update and license check component.<\\/p>\\n<\\/li>\\n = 1.2 =<\\/p>\\n = 1.1.3 =<\\/p>\\n = 1.1.2 =<\\/p>\\n = 1.1.1 =<\\/p>\\n = 1.1 =<\\/p>\\n = 1.0 =<\\/p>\\n The Gravity Flow Form Connector Extension is an advanced extension for Gravity Flow.<\\/p>\\n Gravity Flow is a premium Add-On for Gravity Forms<\\/a><\\/p>\\n = Requirements =<\\/p>\\n = Support =\\nIf you find any that needs fixing, or if you have any ideas for improvements, please get in touch:\\nhttps:\\/\\/gravityflow.io\\/contact\\/<\\/a><\\/p>\",\"changelog\":\" = 1.4 =<\\/p>\\n = 1.3 =<\\/p>\\n = 1.2.1 =<\\/p>\\n = 1.2 =<\\/p>\\n = 1.1 =<\\/p>\\n = 1.0.1.2 =<\\/p>\\n = 1.0.1.1 =<\\/p>\\n = 1.0.1 =<\\/p>\\n = 1.0.0 =\\nAll new!<\\/p>\",\"installation\":\" The Gravity Flow Form Connector Extension is an advanced extension for Gravity Flow.<\\/p>\\n Gravity Flow is a premium Add-On for Gravity Forms<\\/a><\\/p>\\n = Requirements =<\\/p>\\n = Support =\\nIf you find any that needs fixing, or if you have any ideas for improvements, please get in touch:\\nhttps:\\/\\/gravityflow.io\\/contact\\/<\\/a><\\/p>\"],\"changelog\":[\" = 1.4 =<\\/p>\\n = 1.3 =<\\/p>\\n = 1.2.1 =<\\/p>\\n = 1.2 =<\\/p>\\n = 1.1 =<\\/p>\\n = 1.0.1.2 =<\\/p>\\n = 1.0.1.1 =<\\/p>\\n = 1.0.1 =<\\/p>\\n = 1.0.0 =\\nAll new!<\\/p>\"],\"installation\":[\" Progress on the Gutenberg project, the new content creating experience coming to WordPress, has come a long way. Since the start of the project, there have been 30 releases and 12 of those happened after WordCamp US 2017. In total since then, there have been 1,764 issues opened and 1,115 closed as of WordCamp Europe. As the work on phase one moves into its final stretch, here is what you can expect. WordPress 5.0 could be as soon as August with hundreds of thousands of sites using Gutenberg before release. Learn more about Gutenberg here, take it for a test drive, install on your site, follow along on GitHub and give your feedback. WordPress 4.9.7 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9.6 and earlier are affected by a media issue that could potentially allow a user with certain capabilities to attempt to delete files outside the uploads directory. Thank you to Slavco for reporting the original issue and Matt Barry for reporting related issues. Seventeen other bugs were fixed in WordPress 4.9.7. Particularly of note were: Download WordPress 4.9.7 or venture over to Dashboard → Updates and click “Update Now.” Sites that support automatic background updates are already beginning to update automatically. The previously scheduled 4.9.7 is now referred to as 4.9.8, and will follow the release schedule posted yesterday. Thank you to everyone who contributed to WordPress 4.9.7: 1naveengiri, Aaron Jorbin, abdullahramzan, alejandroxlopez, Andrew Ozz, Arun, Birgir Erlendsson (birgire), BjornW, Boone Gorges, Brandon Kraft, Chetan Prajapati, David Herrera, Felix Arntz, Gareth, Ian Dunn, ibelanger, John Blackbourn, Jonathan Desrosiers, Joy, khaihong, lbenicio, Leander Iversen, mermel, metalandcoffee, Migrated to @jeffpaul, palmiak, Sergey Biryukov, skoldin, Subrata Sarkar, Towhidul Islam, warmlaundry, and YuriV. With one of the two flagship WordCamp events taking place this month, as well as some important WordPress project announcements, there’s no shortage of news. Learn more about what happened in the WordPress community in June. On June 14th, WordCamp Europe kicked off three days of learning and contributions in Belgrade. Over 2,000 people attended in person, with hundreds more watching live streams of the sessions. The WordCamp was a great success with plenty of first-time attendees and new WordPress contributors getting involved in the project and community. Recorded sessions from the 65 speakers at the event will be available on WordPress.tv in the coming weeks. In the meantime, check out the photos from the event. The next WordCamp Europe takes place on June 20-22 2019 in Berlin, Germany. If you’re based in Europe and would like to serve on the organizing team, fill in the application form. During his keynote session at WordCamp Europe, Matt Mullenweg presented an updated roadmap for Gutenberg, the new content editor coming in WordPress 5.0. While the editor is in rapid development, with v3.1 being released this past month, the team is aiming to ship Gutenberg with WordPress Core in August, 2018. This is not set in stone — the release date may shift as development progresses — but this gives the first realistic idea of when we can expect the editor to be released. If you would like to contribute to Gutenberg, read the handbook, follow the Core team blog, and join the #core-editor channel in the Making WordPress Slack group. The WordCamp Incubator program helps spread WordPress to underserved communities by providing organizing support for their first WordCamp. The first iteration of this program ran successfully in 2016 and empowered three cities to start their own WordPress communities. This year, the Community Team is running the Incubator program again. After receiving applications from 104 communities, they have selected Montevideo, Uruguay and Kota Kinabalu, Malaysia to participate in the program. Both cities will receive direct help from experienced WordCamp organizers to run their first-ever WordCamp as a way to help their WordPress community get started. To find out more about the Incubator program follow the Community team blog, and join the #community-events channel in the Making WordPress Slack group. If you have a story we should consider including in the next “Month in WordPress” post, please submit it here. This month saw two significant milestones in the WordPress community — the 15th anniversary of the project, and GDPR-related privacy tools coming to WordPress Core. Read on to find out more about this and everything else that happened in the WordPress community in May. Last Sunday, May 27, WordPress turned 15 years old. This is a noteworthy occasion for an open-source project like WordPress and one well worth celebrating. To mark the occasion, WordPress communities across the world gathered for parties and meetups in honor of the milestone. Altogether, there were 224 events globally, with a few more of those still scheduled to take place in some communities — attend one in your area if you can. If your city doesn’t have a WordPress meetup group, this is a great opportunity to start one! Learn how with the Meetup Organizer Handbook, and join the #community-events channel in the Making WordPress Slack group. In light of recent changes to data privacy regulations in the EU, WordPress Core shipped important updates in the v4.9.6 release, giving site owners tools to help them comply with the new General Data Protection Regulation (GDPR). It is worth noting, however, that WordPress cannot ensure you are compliant — this is still a site owner’s responsibility. The new privacy tools include a number of features focused on providing privacy and personal data management to all site users — asking commenters for explicit consent to store their details in a cookie, providing site owners with an easy way to publish a Privacy Policy, and providing data export and erasure tools to all site users that can be extended by plugins to allow the handling of data that they introduce. To find out more about these features and the other updates, read the 4.9.6 update guide. You can also get involved in contributing to this part of WordPress Core by jumping into the #core-privacy channel in the Making WordPress Slack group, and following the Core team blog. In a similar vein, WordPress.org itself has received an updated Privacy Policy to make clear what is being tracked and how your data is handled. Along with that, a Cookie Policy has also been added to explain just what is collected and stored in your browser when using the site. These policies cover all sites on the WordPress.org network — including WordPress.org, WordPress.net, WordCamp.org, BuddyPress.org, bbPress.org, and other related domains and subdomains. It’s important to note that this does not mean that anything has changed in terms of data storage; rather that these documents clarify what data is stored and how it is handled. If you have a story we should consider including in the next “Month in WordPress” post, please submit it here. The WordPress.org privacy policy has been updated, hurray! While we weren’t able to remove all the long sentences, we hope you find the revisions make it easier to understand: There hasn’t been any change to the data that WordPress.org collects or how that data is used; the privacy policy just provides more detail now. Happy reading, and thanks for using WordPress! WordPress 4.9.6 is now available. This is a privacy and maintenance release. We encourage you to update your sites to take advantage of the new privacy features. The European Union’s General Data Protection Regulation (GDPR) takes effect on May 25. The GDPR requires companies and site owners to be transparent about how they collect, use, and share personal data. It also gives individuals more access and choice when it comes to how their own personal data is collected, used, and shared. It’s important to understand that while the GDPR is a European regulation, its requirements apply to all sites and online businesses that collect, store, and process personal data about EU residents no matter where the business is located. You can learn more about the GDPR from the European Commission’s Data Protection page. We’re committed to supporting site owners around the world in their work to comply with this important law. As part of that effort, we’ve added a number of new privacy features in this release. Logged-out commenters will be given a choice on whether their name, email address, and website are saved in a cookie on their browser. Site owners can now designate a privacy policy page. This page will be shown on your login and registration pages. You should manually add a link to your policy to every page on your website. If you have a footer menu, that’s a great place to include your privacy policy. In addition, we’ve created a guide that includes insights from WordPress and participating plugins on how they handle personal data. These insights can be copied and pasted into your site’s privacy policy to help you get started. If you maintain a plugin that collects data, we recommend including that information in WordPress’ privacy policy guide. Learn more in our Privacy section of the Plugin Handbook. Site owners can export a ZIP file containing a user’s personal data, using data gathered by WordPress and participating plugins. Site owners can erase a user’s personal data, including data collected by participating plugins. Howdy, A request has been made to perform the following action on your account: Export Personal Data To confirm this, please click on the following link: You can safely ignore and delete this email if you do not want to This email has been sent to you@example.com. Regards, Site owners have a new email-based method that they can use to confirm personal data requests. This request confirmation tool works for both export and erasure requests, and for both registered users and commenters. 95 updates were made in WordPress 4.9.6. In addition to the above, particularly of note were: This post has more information about all of the issues fixed in 4.9.6 if you’d like to learn more. Download WordPress 4.9.6 or venture over to Dashboard → Updates and click “Update Now.” Sites that support automatic background updates will start updating soon. Please note that if you’re currently on WordPress 4.9.3, you should manually update your site immediately. Thank you to everyone who contributed to WordPress 4.9.6: This past month saw a lot of preparation for upcoming events and releases across the WordPress project. Read on to find out more about these plans, and everything else that happened around the community in April. On May 27 2018, WordPress will turn 15 years old — this is a huge milestone for the project, or, indeed, for any open-source platform. The Community Team has been hard at work helping communities around the world plan local anniversary parties. Check the central anniversary website to see if there’s already a party being planned near you. These parties are all organized by local communities — if there’s no local community in your area, you can start one today and host a party yourself. With Gutenberg, the upcoming WordPress content editor, in rapid development, a lot of people have been wondering how they will convert their existing plugins to work with the new features. To mitigate the issues here and help people overcome any migration hurdles, a Gutenberg Migration Guide is underway to assist developers with making their code Gutenberg-compatible. If you’d like to contribute to this guide, you can review the existing documentation on GitHub and open a new issue if you find something to add. Reviews of themes submitted to the Theme Directory can take quite a while to complete. In order to combat this issue and to make the theme submission process smoother for everyone, the Theme Review Team is introducing a Trusted Authors Program. This program will allow frequent and reliable theme authors to apply for trusted status, allowing them to upload themes more frequently and to have their themes automatically approved. This will allow more high-quality themes to be added to the directory, as well as recognize the hard work that authors put in to build their themes. If you would like to get involved with reviewing themes, you can read their getting started guide, follow the team blog and join the #themereview channel in the Making WordPress Slack group. If you have a story we should consider including in the next “Month in WordPress” post, please submit it here. May 27, 2018 is the 15th anniversary of the first WordPress release — and we can’t wait to celebrate! Join WordPress fans all over the world in celebrating the 15th Anniversary of WordPress by throwing your own party! Here’s how you can join in the fun: Don’t miss this chance to participate in a global celebration of WordPress! In honor of the 15th anniversary, we’ve added some special 15th anniversary items in the swag store — you can use the offer code CELEBRATEWP15 to take 15% off this (and any other WordPress swag you buy), all the way through the end of 2018! Keep checking the swag store, because we’ll be adding more swag over the next few weeks! However you celebrate the WordPress 15th anniversary — with a party, with commemorative swag, by telling the world what WordPress means to you — remember to use the #WP15 hashtag to share it! And don’t forget to check the stream of WordPress 15th anniversary posts. When 30% of the internet has a reason to celebrate, you know it’s going to be great! GDPR compliance is an important consideration for all WordPress websites. The GDPR Compliance team is looking for help to test the privacy tools that are currently being developed in core. GDPR stands for General Data Protection Regulation and is intended to strengthen and unify data protection for all individuals within the European Union. Its primary aim is to give control back to the EU residents over their personal data. Why the urgency? Although the GDPR was introduced two years ago, it becomes enforceable starting May 25, 2018. Currently, the GDPR Compliance Team understands that helping WordPress-based sites become compliant is a large and ongoing task. The team is focusing on creating a comprehensive core policy, plugin guidelines, privacy tools and documentation. All of this requires your help. The GDPR Compliance Team is focusing on four main areas: Yes and no. That said, The GDPR puts tighter guidelines and restrictions. Though we have many plugins that create privacy pages, we need means to generate a unified, comprehensive privacy policy. We will need tools for users to easily come into compliance. Site owners will be able to create GDPR compliant privacy policy in three steps: A new “postbox” will be added to the Edit Page screen when editing the policy. All plugins that collect or store user data will be able to add privacy information there. In addition it will alert the site owners when any privacy information changes after a plugin is activated, deactivated, or updated. There is a new functionality to confirm user requests by email address. It is intended for site owners to be able to verify requests from users for displaying, downloading, or anonymizing of personal data. A new “Privacy” page is added under the “Tools” menu. It will display new, confirmed requests from users, as well as already fulfilled requests. It will also contain the tools for exporting and anonymizing of personal data and for requesting email confirmation to avoid abuse attempts. New section on privacy will be added to the Plugin Handbook. It will contain some general information on user privacy, what a plugin should do to be compliant, and also tips and examples on how to use the new privacy related functionality in WordPress. The new privacy tools are scheduled for release at the end of April or beginning of May 2018. We would love to have your help. The first step is awareness and education. For more information about the upcoming privacy tools see the roadmap. If you would like to get involved in building WordPress Core and testing the new privacy tools, please join the #gdpr-compliance channel in the Make WordPress Slack group. WordPress 4.9.5 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9.4 and earlier are affected by three security issues. As part of the core team's ongoing commitment to security hardening, the following fixes have been implemented in 4.9.5: Thank you to the reporters of these issues for practicing coordinated security disclosure: xknown of the WordPress Security Team, Nitin Venkatesh (nitstorm), and Garth Mortensen of the WordPress Security Team. Twenty-five other bugs were fixed in WordPress 4.9.5. Particularly of note were: This post has more information about all of the issues fixed in 4.9.5 if you'd like to learn more. Download WordPress 4.9.5 or venture over to Dashboard → Updates and click "Update Now." Sites that support automatic background updates are already beginning to update automatically. Thank you to everyone who contributed to WordPress 4.9.5: 1265578519, Aaron Jorbin, Adam Silverstein, Alain Schlesser, alexgso, Andrea Fercia, andrei0x309, antipole, Anwer AR, Birgir Erlendsson (birgire), Blair jersyer, Brooke., Chetan Prajapati, codegrau, conner_bw, David A. Kennedy, designsimply, Dion Hulse, Dominik Schilling (ocean90), ElectricFeet, ericmeyer, FPCSJames, Garrett Hyder, Gary Pendergast, Gennady Kovshenin, Henry Wright, Jb Audras, Jeffrey Paul, Jip Moors, Joe McGill, Joen Asmussen, John Blackbourn, johnpgreen, Junaid Ahmed, kristastevens, Konstantin Obenland, Laken Hafner, Lance Willett, leemon, Mel Choyce, Mike Schroder, mrmadhat, nandorsky, Nidhi Jain, Pascal Birchler, qcmiao, Rachel Baker, Rachel Peter, RavanH, Samuel Wood (Otto), Sebastien SERRE, Sergey Biryukov, Shital Marakana, Stephen Edgar, Tammie Lister, Thomas Vitale, Will Kwon, and Yahil Madakiya. Progress on the Gutenberg project, the new content creating experience coming to WordPress, has come a long way. Since the start of the project, there have been 30 releases and 12 of those happened after WordCamp US 2017. In total since then, there have been 1,764 issues opened and 1,115 closed as of WordCamp Europe. As the work on phase one moves into its final stretch, here is what you can expect. WordPress 5.0 could be as soon as August with hundreds of thousands of sites using Gutenberg before release. Learn more about Gutenberg here, take it for a test drive, install on your site, follow along on GitHub and give your feedback. Paul Biron and Joshua Wold are leading the upcoming WordPress 4.9.8 release, which was originally announced as 4.9.7. WordPress core contributors met yesterday to decide the general focus and set the release schedule. In the meantime, the 4.9.7 security and maintenance release was rolled out to fix an authenticated arbitrary file deletion vulnerability, along with a few other minor updates. WordPress 4.9.8 is targeted for July 31, 2018, with a beta as early as July 17. The release will focus on introducing the “Try Gutenberg” callout and adding privacy fixes and enhancements. The ticket proposing the callout was opened a year ago and was planned to be included in WordPress 4.9.5 but was eventually pulled before the release in favor of allowing Gutenberg contributors to iron out a few important issues. WordPress Core Committer Mel Choyce added the most recent round of designs to the ticket four weeks ago and contributors are still iterating on the design and text for the callout. Another iteration is expected to be added to the ticket early next week. WordPress 4.9.8 is another step in Matt Mullenweg’s roadmap for getting Gutenberg into 5.0. The goal is to make more users aware of Gutenberg and to gather more testing and feedback before the new editor lands in core. The prompt will include a prominent button that users can click to install the Gutenberg plugin, along with links for where to learn more and how to report issues. WordPress developer Jason Bobich has created an open source client-side React app called Just Write that provides a decoupled editing experience for WordPress. Bobich said he built the app in 10 days to explore the possibilities of React and the WP REST API. Although it’s still a work in progress, the app has a demo where curious testers can manage posts from any WordPress website that’s secured with HTTPS and has the JWT Authentication plugin installed. Alternatively, testers can click on the “play in the sandbox” to bypass authentication. Once logged in, the user sees a dashboard with the most recent posts, a deliberate design decision that Bobich made to “motivate the user to do one thing – to just write.” The editor includes support for Markdown and a simple preview with a sticky toolbar at the top. Just Write also allows the user to edit their profile and personal information in a dropdown at the top of the screen. Bobich said he created to the app to improve his JavaScript skills and doesn’t have a plan to use it for business. “Ever since we were all told a couple of years ago, ‘Learn JavaScript deeply,’ I’ve seen just how many holes I had in my own JavaScript knowledge,” Bobich said. “I’ve been working hard the last couple of years to become more than just a jQuery monkey. And so this project is just another step towards my personal growth surrounding the technologies involved here. It’s so exciting to think about the potential things that we can build in the community with React and the WordPress API.” After the REST API was merged into core, the time seemed ripe for developers to build a proliferation of different writing experiences for users. However, working with the API still has many hurdles for application developers, limitations that Bobich said he became acquainted with while developing Just Write. “For anyone wanting to build a practical application like this, the first glaring issue is around authentication,” Bobich said. “WordPress has no way to securely authenticate from outside of the WordPress admin. So expecting any average user to set up oAuth or JWT with a third-party plugin is a bit of a reach.” Bobich also encountered issues working with media and saving content the WordPress way (which allows shortcodes to get parsed before “Think about all the work WordPress has put into the way we embed media in different ways,” Bobich said. “Just having basic things we take for granted — pasting a YouTube link, a tweet, uploading an image and having it cropped 100 ways ’til Sunday — for all work properly would all take custom JavaScript coding.” Bobich said he thinks these limitations are the reason why there aren’t yet more applications built with decoupled editing experiences. Yet, in the new era of Gutenberg, Just Write’s alternative writing interface offers a simplicity that some users may prefer. “As the WordPress admin continues to grow and become more complex, some people get excited and others moan and grown,” Bobich said. “But building something like Just Write shows us that there’s more to WordPress than just what we see. There’s more than a menu full of plugins and a new editor built in React that we may or may not like. WordPress can be what we want. It can fit our own needs or any client’s. And this all comes from the potential ability to decouple the editing experience.” As WordPress has evolved to accommodate different user types from blogging, websites, and niche applications, Bobich said he thinks the next logical step is for developers to begin creating admin interfaces catered specifically to users’ individual needs. “Gutenberg marks an important turn in the evolution,” Bobich said. “For those that were clinging to the simplicity of WordPress and blocking out some of the other noise, this might not be something they end up liking… or maybe it will? “But the bigger point is that what we see there in the admin doesn’t have to be it. I hope people will be braver than me and really set out to build these different alternatives. If I can polish my React skills and build that myself in 10 days, I can only imagine what others can do.” WordPress 4.9.7 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9.6 and earlier are affected by a media issue that could potentially allow a user with certain capabilities to attempt to delete files outside the uploads directory. Thank you to Slavco for reporting the original issue and Matt Barry for reporting related issues. Seventeen other bugs were fixed in WordPress 4.9.7. Particularly of note were: Download WordPress 4.9.7 or venture over to Dashboard → Updates and click “Update Now.” Sites that support automatic background updates are already beginning to update automatically. The previously scheduled 4.9.7 is now referred to as 4.9.8, and will follow the release schedule posted yesterday. Thank you to everyone who contributed to WordPress 4.9.7: 1naveengiri, Aaron Jorbin, abdullahramzan, alejandroxlopez, Andrew Ozz, Arun, Birgir Erlendsson (birgire), BjornW, Boone Gorges, Brandon Kraft, Chetan Prajapati, David Herrera, Felix Arntz, Gareth, Ian Dunn, ibelanger, John Blackbourn, Jonathan Desrosiers, Joy, khaihong, lbenicio, Leander Iversen, mermel, metalandcoffee, Migrated to @jeffpaul, palmiak, Sergey Biryukov, skoldin, Subrata Sarkar, Towhidul Islam, warmlaundry, and YuriV. People were paying me to write code two years before I had wifi in my house. Home wifi would have cost $45 a month. The cable company wanted a $100 deposit to create my account. It wasn’t going to happen, I could get wifi with a cup of coffee for $3 (including the tip) at a coffee shop a few blocks away from my place that meant I got some semblance of being social. I couldn’t imagine giving up 15 days a month at coffee shops just so it was easier to work from home, not when I could get away with sitting on my porch poaching wifi from my neighbors when I got stuck and had to google regular expressions for the 400th time. Or, my favorite, sit in a park down the street where there were three unprotected wifi networks and a strong tree to lean against. My path to becoming a web developer started when I packed up my beat up Chevy Prizm and drove to Portland, Oregon. I had graduated college with degrees in Economics and Political Science. While there, I become a Linux user when I discovered that it used less space meaning I had more space for music. I had never written code, but when my friends and I decided we wanted to create our version of The Onion, I started searching. After a little bit of trial ( blogger ) and error ( blogger ), I found WordPress and it’s “Famous Five Minute Install”. I purchased a domain and hosting from a place that advertised heavily and set about creating our site. The public library was my initial source of information. After all, having fun isn’t hard when you’ve got a library card. I picked up books on CSS, PHP, Java, Database design, and anything I could get my hands on. I was working evenings as an usher for the Portland Trailblazers and would head over to a 24 hour coffee shop to cowboy code under fluorescent lights until I was ready to crash. I can think of three big breaks that really helped move me along. Each of these ended up being “Flash Forward” moments where I was able to grow. I was scouring craigslist looking for anything I could get my hands on when I found someone offering $25 to move their WordPress site from one domain to another. Having just done that, I sent an email and crossed my fingers. Somehow, my eagerness (and likely willingness to work for peanuts) got my their trust. I had my first client. It took me way longer than I would have hoped as I learned about things like DNS Propagation, but I completed the task. And did such a good job that I was asked if I could build a website for one of their friends who was a standup comic. I was honest that I had never built a real site from scratch, but they liked how I had communicated, so I got the gig. Before the first time I contributed to WordPress, I went to the Portland WordPress User Group to ask if something I was seeing was possibly an issue that warranted emailing the wp-hackers mailing list. I was so scared of being wrong that I felt like I needed to ask permission. I assumed that I was going to make a fool of myself and be laughed at. I ended up emailing the list and it turned out, I had found a spot where WordPress could be better! In the grand scheme of WordPress, passing a parameter to three `do_action` calls didn’t help WordPress gain 1% of market share, but it did help me with the plugin I was working on. And I was exposed to the process. I learned about trac, and the weekly devchat, and patches and svn. While I didn’t get props, I still consider this my first contribution to WordPress Core. WordCamps are cheap compared to most tech conferences, but when you are playing the game of “How do I eat on $10 a week” for months on end, $40 for a conference whose value is unknown is a hard sell. Luckily, the Portland WordPress User Group did a raffle for a ticket and I won. All I had to pay for was the $2 in bus fare each way and I had the chance to learn. The 2009 WordCamp Portland ended up being where Matt Mullenweg announced that WPMU was going to be merged into core in WordPress 3.0 and it’s where I saw a talk entitled “How Not to Build a WordPress Plugin” by Will Norris. Will’s talk exposed me to WordPress development in a way that I would never have imagined on my own. It helped me level up from someone who mostly was copy and pasting PHP to someone who was writing code. Additionally, I was able to network for the first time. It no longer was the same 15 people who went to the meetup, it was now about 200 WordPress fanatics, many who wanted to hire someone like me to work on their website! Looking back, these flash forward moments contributed almost as much to luck to my success. In many ways, a lot of my success can be attributed to the luck of being born as someone who is essentially a white cis-male into a family where I was exposed to computers and had a chance to gain a solid liberal arts education. But it’s not just that luck that helped me. I had to provide good customer service to turn a $25 task into a contract to build my first website. I had to be willing to embarrass myself by asking what I thought was a dumb question. I had to show up and become a part of my local community to get a ticket for a conference where I learned and networked. Soon after WordCamp Portland 2009, I had enough client work coming in that it made sense to have wifi. Home wifi meant I could start being connected to the WordPress community more than once a month in person or a few hours here and there at coffee shops. It meant I could read dev chat every week and eventually it meant I could earn props. Networking at meetups, WordCamps and conferences led to full time jobs. Taking risks and being willing to look like a fool in front of the WordPress community have enabled me to become a WordPress Core committer (and sometimes continue to look like a fool). In addition to volunteering on WordPress Core, I’m now the Director of Editorial Technology for Penske Media Corporation where I help brands like Rolling Stone and Variety run on WordPress, but I’ll never forget when if I needed to code, I was going to sit under trees in parks or the fluorescent lights of a 24 hour coffee shop. The post Coding under trees and in 24 hour coffee shops appeared first on HeroPress. The WordCamp Incubator Program has selected Montevideo, Uruguay and Kota Kinabalu, Malaysia to host WordCamps in 2018. The program provides a jump start for new WordPress communities where meetups have not yet been well-established. Montevideo and Kota Kinabalu were selected from a short list of 14 communities that had been whittled down from 104 applications for the program. WordPress Community Deputies will co-lead the events and mentor a local team that will organize a one-track WordCamp with approximately 50-75 attendees. The goal is to empower the new organizers and the fledgling communities to host more local events, ideally regular meetups and an annual WordCamp. Mentors will assist in finding speakers and sponsors. A global sponsorship grant will cover 100% of the events’ costs, relieving the organizers of the burden of local fundraising. WordPress Community Team member Rocío Valdivia announced the program’s new cities for 2018 and said she anticipates the events will happen in the last quarter of this year. Local co-leads have been charged with starting a monthly meetup group before setting a date for the new WordCamps. Round 2 of the WordCamp Incubator Program follows up a successful run in 2016 that brought WordCamps to Denpasar, Harare, and Medellín. Harare hosted its second WordCamp in 2017 and a 2018 camp is in the early planning stages. This particular African community, along with the neighboring Nairobi community (on the short list in 2016), are strong examples of how the incubator program can provide a boost in areas of the world where the WordPress community is not yet deeply rooted. ThemeBeans founder Rich Tabor has released a new plugin called Block Unit Test for Gutenberg that helps theme authors test their themes for Gutenberg-readiness. It is similar to the Theme Unit Test but is limited to testing Gutenberg blocks. After installing and activating both Gutenberg and sBlock Unit Test, the plugin creates a new page as a draft with an example of every core Gutenblock. This makes it easy to see how the blocks will appear on the frontend of any theme. Block Unit Test also includes variations on the core blocks with different alignment and column settings applied. Tabor said he knew it would be advantageous to start using/writing in Gutenberg daily to better understand what he needed to do to make his products at ThemeBeans compatible. “I added initial support for Gutenberg in my Tabor WordPress theme, as I use it on my own personal blog with Gutenberg,” he said. “I needed a way to easily test each of the core Gutenberg blocks (and eventually third-party blocks) without having to manually add them every time I wanted to test something. As Gutenberg blocks get more dynamic and complicated, it’s a bit trickier to test for – as many blocks have different variations/styles/columns/grids/etc.” Tabor took inspiration from the Theme Unit Test and created Block Unit Test with Gutenblock variations included. He is using the plugin while preparing the 20+ themes in his ThemeBeans catalog to support Gutenberg. He wrote the plugin to be extensible and made it open source on GitHub for other developers and theme shops to use. Theme developers can install Block Unit Test as a first step towards making sure the front-end styles match the editor styles. This will be essential to making the transition process easier for new Gutenberg users once WordPress 5.0 ships. Tabor also published a tutorial for adding WordPress Theme Styles to Gutenberg to help others get started. In getting his first theme compatible, Tabor said he relied heavily on the Gutenberg Handbook, as well as following discussions on the Gutenberg GitHub repository. “It’s not terribly difficult to add support for Gutenberg, although applying proper theme styles within the Gutenberg editor is a bit of task — there’s so much that can be accidentally overlooked,” Tabor said. “For the theme side of things, there wasn’t much technical leveling-up — though developing blocks is a different story. I did need to raise the bar and dive deeply into the world of Javascript, though looking at the block examples on the GitHub repository really helped me along.” Tabor said he started “living and breathing all things Gutenberg” after WordCamp US 2017, and began writing development articles while learning the ropes. He created several projects focused on the new editor, including Writy, a Gutenberg-centric writing experience for publishers, and Co-Blocks, a beta suite of Gutenberg blocks for content marketers. “As a founder of a theme shop it was apparent that I needed to hone in on Gutenberg and level-up my knowledge, technical skills, and consequently my products, in order to compete in a post-Gutenberg era of WordPress,” Tabor said. “I believe the foundation of the future of WordPress lies in the success of Gutenberg. I use the new editor just about daily now. I know it’s a great move in the right direction and I’m doing my part to make sure folks using my themes can experience everything that Gutenberg has to offer.” With one of the two flagship WordCamp events taking place this month, as well as some important WordPress project announcements, there’s no shortage of news. Learn more about what happened in the WordPress community in June. On June 14th, WordCamp Europe kicked off three days of learning and contributions in Belgrade. Over 2,000 people attended in person, with hundreds more watching live streams of the sessions. The WordCamp was a great success with plenty of first-time attendees and new WordPress contributors getting involved in the project and community. Recorded sessions from the 65 speakers at the event will be available on WordPress.tv in the coming weeks. In the meantime, check out the photos from the event. The next WordCamp Europe takes place on June 20-22 2019 in Berlin, Germany. If you’re based in Europe and would like to serve on the organizing team, fill in the application form. During his keynote session at WordCamp Europe, Matt Mullenweg presented an updated roadmap for Gutenberg, the new content editor coming in WordPress 5.0. While the editor is in rapid development, with v3.1 being released this past month, the team is aiming to ship Gutenberg with WordPress Core in August, 2018. This is not set in stone — the release date may shift as development progresses — but this gives the first realistic idea of when we can expect the editor to be released. If you would like to contribute to Gutenberg, read the handbook, follow the Core team blog, and join the #core-editor channel in the Making WordPress Slack group. The WordCamp Incubator program helps spread WordPress to underserved communities by providing organizing support for their first WordCamp. The first iteration of this program ran successfully in 2016 and empowered three cities to start their own WordPress communities. This year, the Community Team is running the Incubator program again. After receiving applications from 104 communities, they have selected Montevideo, Uruguay and Kota Kinabalu, Malaysia to participate in the program. Both cities will receive direct help from experienced WordCamp organizers to run their first-ever WordCamp as a way to help their WordPress community get started. To find out more about the Incubator program follow the Community team blog, and join the #community-events channel in the Making WordPress Slack group. If you have a story we should consider including in the next “Month in WordPress” post, please submit it here. A master in the art of living draws no sharp distinction between his work and his play; his labor and his leisure; his mind and his body; his education and his recreation. He hardly knows which is which. He simply pursues his vision of excellence through whatever he is doing, and leaves others to determine whether he is working or playing. To himself, he always appears to be doing both. Lawrence Pearsall Jacks in Education through Recreation, 1932 Welcome to the Post Status Draft podcast, which you can find on iTunes, Google Play, Stitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards. In this episode, the Brians have a chat about a number of different acquisitions that have occurred in the WordPress space over these past few weeks. Listen in as they unpack some of the news surrounding StudioPress, WPEngine, Automattic, WPNinjas, Prospress, and AutomateWoo. Check out our episode links for further stories about each of those businesses as well as the virtual JavaScript for WordPress conference taking place live on July 29. Jilt offers powerful email marketing built for eCommerce. Join thousands of stores that have already earned over $28,000,000 in extra sales using Jilt. Try Jilt for free Progressive themes was a hot topic at WordCamp Europe 2018. During the event I had the opportunity to set up a panel with four experts who are working to integrate progressive web development practices more deeply in WordPress core, plugins, and themes. These practices make it possible for a website (or app) to work offline, load quickly, deliver content on unreliable networks, and use device-specific features to provide a better experience for the user. The PWA (progressive web app) created for WordCamp Europe is a good example of this in action. Thierry Muller, Alberto Medina, Weston Ruter, and Morten Rand-Hendriksen joined me for an interview, exploring the future of WordPress themes in the era of progressive web development. (see video below) “At the most abstract level, it’s all about user experience,” Medina said. “How do we maximize the pleasure that our users get when they use our websites? And delightfulness in this context means things like performance, speed, having content that isn’t blocked. If you think about themes built according to those principles, then we are basically seeking an awesome user experience in WordPress.” It’s not yet clear what this will look like for the WordPress theme landscape, as current solutions are somewhat fragmented. WordPress contributors are working to standardize progressive technologies in core so the ecosystem can collaborate better together. “There are many progressive themes being built these days,” Medina said. “One of the problems that is happening is that there is a lot of fragmentation. There’s a lot of plugins that are using service workers but in their own ways. What we want is to say, ‘This is the best way to do things,’ this is a uniform API to do it, and then enable progressive theme developers to take advantage of the core functionality.” Currently, the prospect of setting up a WordPress site that uses progressive web technologies would be a daunting task for regular users, even if they are implementing existing solutions. “There’s also a user aspect of it, because the people for whom we design WordPress, plugins, and themes, are the people who actually publish their own content onto the web,” Rand-Hendriksen said. “There’s a really valid question in how much should they need to know about how the web works to be able to publish some content. When they spin up a WordPress site, should we impose on them to know that they need to add all these optimization plugins and do all this other stuff just to make the site work properly? How much of that can be offloaded onto the theme itself, or plugins, or even WordPress core?” The members of the panel are working together to on various projects and core contributions that will standardize the use of progressive enhancement technologies in WordPress. “The goal is to have a common API for service workers so that plugins and themes can each install their own logic, just like they can enqueue their own scripts today,” Ruter said. “Also to be able to enqueue their own service workers and then core can manage the combination of them, as well as having a common app manifest that plugins and themes can collaborate on and have a single output into the page.” This is how Rand-Hendriksen’s WP Rig starter theme project came about – to help developers take advantage of these best practices in the meantime, without having to figure out how to put all the pieces together. “WP Rig gives you the platform to build a progressive theme that uses all the latest performance and WordPress best practices, in a convenient package, and over time it will evolve with these new progressive technologies,” Rand-Hendriksen said. We also discussed AMP and Gutenberg compatibility, core support for web app manifests, and how the commercial theme industry will react to these new technologies. Check out the full interview in the video below. In this episode, John James Jacoby and I spend the first half of the show discussing WP Engine’s acquisition of StudioPress. We share reactions from social media, debate on whether it’s a good or bad thing for the WordPress ecosystem, and webhosts being at the top of the food chain. We also talk about a recent security vulnerability that was publicly disclosed, ProsPress acquires AutomateWoo, and the release of Tide beta 1. Also of note, we identified an issue that causes John’s audio to turn into static. His audio should be fixed in the next episode. Why WP Engine is Acquiring StudioPress Next Episode: Wednesday, July 4th 3:00 P.M. Eastern Subscribe to WordPress Weekly via Itunes Subscribe to WordPress Weekly via RSS Subscribe to WordPress Weekly via Stitcher Radio Subscribe to WordPress Weekly via Google Play Listen To Episode #322: If you’re writing all your posts in the new Gutenberg editor but don’t want to give up convenient access to your fancy gifs and stock images, the new Drop It plugin has you covered. Riad Benguella, one of the engineers who is working on Gutenberg, created the plugin to offer one-click image insertion/upload from Unsplash.com. Drop It adds a droplet icon to the Gutenberg sidebar that launches a search form for Unsplash.com or Giphy.com (a feature contributed by Julien Maury). Users can click the “+” sign on the image or simply drag and drop it into the content area. Drop It seamlessly connects Gutenberg to the Unsplash and Giphy libraries, putting hundreds of thousands of stock photos and gifs at your fingertips while composing in WordPress. In the earlier days of Unsplash, many of the same images were used all over the web, but over the past few years its library has grown to include more than 550,000 high-resolution photos. Check out this demo to see how how fast it is to search and insert images: Benguella originally created the plugin for a talk he gave at WPtech Lyon where he demonstrated how plugin developers can make use of Gutenberg’s reusable modules. His presentation and slides explore Gutenberg’s architecture and show how he created the Drop It plugin. Benguella said the Drop It plugin’s code is a good example of how developers can extend Gutenberg’s UI using “pinnable” sidebar plugins. It also shows how to use the Data module to access and update Gutenberg’s state (data). In the future, Benguella plans to add more sources for inserting media. He currently has a proof of concept for adding content from Google Docs and will add more depending on contributions from others and his availability to work on the plugin. As Automattic keeps growing we’ve been bringing in a lot of talented people behind the scenes to help expand on our vision as we go from hundreds to thousands of colleagues, and hundreds of millions to billions in revenue. Recently, former New York Times digital executive Kinsey Wilson joined our team as president of WordPress.com, the Chief Design Officer of Axios Alexis Lloyd has joined as head of Design Innovation, the former CEO of Bluehost James Grierson, and today I’m excited to announce a change to my bosses, the board of directors. Gen. Ann Dunwoody served for 37 years in the U.S. Army, and she is the first woman in U.S. Military history to achieve a four-star officer rank. She’s also the author of A Higher Standard: Leadership Strategies from America’s First Female Four-Star General, a book I really loved and highly recommend. Automattic’s board has had no new members since its founding in 2005, so this is our first addition in 13 years. I became familiar with General Dunwoody’s work while researching distributed organizations outside of technology, which led me to the military, which led me to geek out on logistics, which led me to her book and eventually flying out to Florida to meet in person. Below is a brief interview with Gen. Dunwoody — we chatted with her about global leadership, finding your passion, and building a business. We’re excited to have you onboard, General Dunwoody. It’s interesting — at Automattic we like to point out that we’re all over the globe (over 740 employees in more than 60 countries) but you oversaw 69,000 military and civilians across 140 countries! Were there any big leadership lessons from managing operations across such a wide range of distances, timezones, and cultures? That’s a great question. When I started out as a young officer in the Army, the leadership philosophy that was espoused back then was “Leadership by walking around.” When you’re in charge of a platoon, a company or even a battalion or Brigade that is not globally dispersed this philosophy is very sound. When you’re running a global organization with 69,000 folks in 140 countries, you have to leverage technology to keep real-time communications flowing and keep leaders updated. I would host (with the leadership) a global video teleconference every Wednesday connecting every organization from Afghanistan, Kuwait, Iraq, Europe, etc. and sites — hundreds across the United States. Our headquarters would provide an operational update and then we go around the globe to get update from from everyone — what’s going well, where they need help or additional resources. In the old days I think people believed information was power and often withheld information to use for personal advantage, but I believe shared information is power. By leveraging the power of the entire industrial base we could solve problems in real time. I still travelled around a lot to see our people, but it is not possible to keep everyone informed and in the loop with current operations without leveraging technology. I love your answer about “shared information is power.” Did you ever find it difficult to break down the silos and embrace that concept? Oh my, yes. They weren’t just silos, they were silos with concertina wire around them! Parochialism was rampant and everyone wanted their own system and own their own information. We had over 200 stand alone systems that didn’t talk to each other. So to field and design an enterprise IT system that leveraged systems with the needed information to support “foxhole to factory” was challenging and exciting. And how did you decide what technological means to communicate an idea or a directive, versus, say, meeting in-person? I would say it depended on the idea. If it was personal, probably a phone call (one on one); if trying to generate support for an idea or transformational concept, meet in-person with my initiatives group to socialize the idea and get their input modifications and buy-in. Then Commanders conference to socialize idea with them, as they will have to implement it. Once socialized with leadership, we worldwide videoconference with the entire organization to define and describe the purpose, intent, how, and why — so everyone knew what we were trying to do and what their role was in execution. I found you cannot over-communicate when trying to make changes. It’s an incredible accomplishment to become the first woman in U.S. Military history to achieve the four-star officer rank. Can you tell me about how things changed (or maybe still need to change further) in terms of your experience during your 37 years of service, and how you addressed diversity and inclusion in the military? First, I certainly didn’t accomplish this by myself — I had a lot of help along the way! I joined the Army as part of the Women’s Army Corps (WAC) back in 1975. A few years later they disestablished the WAC and began the integration of women into the regular Army. This was the first time women had the opportunity to have the same career opportunities as their male counterparts in the branches now open to women. The challenge for the women who came into the Army back then was to force the integration — fight being put into traditional jobs like being a secretary, admin, clerk, or cook — and fight to be platoon leaders, etc., to support and move the integration of women into the regular Army. What I witnessed during my time in the Army was that the doors continued to open. Yes, there were roadblocks — but there were also many leaders along the way who were willing to help. I never worked for a woman. I worked for men who either believed in me or didn’t. My experience in my almost four decades was that the doors continued to open for women. I thought jumping out of airplanes was really neat — now my niece in the USAF is an A-10 fighter pilot, and we have women graduating from Ranger school! On diversity, I realized that being the only female in many forums, my voice was hard to be heard. And I also realized that most folks promoted and surrounded themselves with people in their own image. What my philosophy was — and I still think it is an issue today — is that diversity is not about numbers, it’s about getting the best and brightest from all walks of life, to help leaders solve the very complex issues that face us today. Don’t surround yourself with only people that think or act or look like you. Who are the leaders that inspire you today? I think we are products of our past — Mom and Dad, even though not here on earth, gave me the values that still guide me. Many of my military mentors, Gen. Hugh Shelton, Gen. Pete Schoomaker, Gen. Gordon Sullivan, Gen. Dick Cody, are still coaches and mentors to me today. Folks I admire: Warren Buffett, only met him once but I like his concern for the betterment of our country; Oprah Winfrey, although I have never met her I admire her for what she does for our country how she presents herself and how she handles herself — awesome; Gen. Mattis — wow, I admire him for taking on this extremely tough assignment for the good of our country and our defense. Secretary Gates served two administrations, Republican and Democrat. People that inspire me are people I believe are true leaders — valuing honesty and having the best interests of the country at heart. No hubris! StudioPress, founded by Brian Gardner in 2007, has been acquired by managed WordPress hosting company WP Engine, for an undisclosed amount. In 2007, Gardner created the Revolution theme which took the WordPress world by storm. According to some people, it ignited the WordPress Premium theme market. In the midst of a GPL debate regarding themes in 2008, Gardner decided to license the Revolution theme as 100% GPL. In 2009, Gardner rebranded Revolution to StudioPress due to legal reasons. Early in 2010, StudioPress released the Genesis Framework. This framework would go on to power thousands of themes and be the cornerstone of StudioPress’ theme business. In 2010, StudioPress was merged into Copyblogger Media LLC, which eventually went on to create the Rainmaker platform. Fast forward to 2018 and StudioPress has been acquired by WP Engine, a managed WordPress hosting company founded in 2010 that earlier this year, received $250M in venture capital funding from Silver Lake. According to Jason Cohen, founder of WP Engine, this is the largest acquisition in the company’s history. “In all, our contributions to the WordPress community in time, money, writing, coding and thought leadership totaled more than $1.7 million in 2017 and we’re already doing even more this year,” he said. “As WP Engine continues to grow and scale, the way we give back to the WordPress community must grow and scale also, which was one of the deciding factors behind our acquisition of StudioPress—our largest acquisition in WP Engine’s history.” The company plans to heavily invest in the Genesis Framework community and ecosystem by hiring people to work on different aspects of the framework. Support will receive a boost as well as the ecosystem surrounding StudioPress’ products. With Gutenberg on the horizon, Cohen says the Genesis Framework will be a shining example of what’s possible with WordPress’ new editor. “There’s been plenty of concern about how Gutenberg will affect existing plugins and themes, so Genesis can serve as an example for how Gutenberg can work brilliantly,” Cohen said. “This directly advances the goals of WordPress Core. This precedent doesn’t stop with Gutenberg, either. Gutenberg is the transformation of today—there will be more tomorrow. While the topic of the day will change, the idea of supporting Core through themes and theme frameworks that support those efforts is an asset for the wider WordPress community.” Gardner will stay on board and be part of StudioPress’ leadership team at WP Engine with an emphasis on product development and community. Nathan Rice along with the support team will transition to WP Engine with Rice continuing to serve as the lead developer of Genesis. Gardner admits that the acquisition is bittersweet, but that it’s a founding moment in the company’s history. “As my new colleague, Jason Cohen, the founder of WP Engine often says, ‘There are many founding moments in the history of a company.’ This is one of those moments and I know it’s time for StudioPress to take the next step—and WP Engine is the right partner to take it with.” StudioPress customers can expect better support, more themes to choose from, and little to no disruption of service. Zac Gordon is hosting a “JavaScript for WordPress Conference” with two tracks on Friday, June 29, from 9:30 AM – 5:30 PM EDT. The free conference, sponsored by 10up and WP Buffs, includes a full day of online talks from JavaScript professionals who work in the WordPress ecosystem. Gordon will be streaming the talks live via Crowdcast. Approximately 1,300 seats have been reserved so far, a number that rivals most WordCamps. Unlike WordCamps, however, the entire schedule is focused around developer education, featuring more technical talks that are often missing from traditional WordPress events. “I figured there was an interest in more JS-specific WordPress content and, given my courses and getting to know some people working a lot with JavaScript, I figured I would give it a shot,” Gordon said. Gordon has been working for the past several years as a freelance educator after his former employer, Treehouse, dropped support for WordPress education. He said his first project, the JavaScript for WordPress Master Course, was a huge undertaking. He is not offering that course anymore but is instead focusing on smaller, more targeted courses on his site javascriptforwp.com. “Most of my courses this year will be Gutenberg related (have one now and a theme course launching next week, followed by an Advanced one after that),” Gordon said. He has also done courses at Udemy, Frontend Master, WP Sessions, WP101, and some consulting with Udacity. “I’m still learning the right price points and packaging and size,” Gordon said. “A few companies have gotten group accounts for their teams which is really positive and encouraging for me.” Gordon took a deep dive into JavaScript education after Matt Mullenweg issued a challenge to “Learn JavaScript Deeply” during his 2015 State of the Word address. He said so far the courses he offers have been going well and the community seems to have embraced the challenge. “The funny thing about Learning JavaScript Deeply is that people will still be able to build things in Gutenberg and beyond without really knowing it deeply,” Gordon said. “However most in the community have already picked up React or delved deeper into Vanilla JavaScript, and those who haven’t I believe certainly will be in the coming months and years. “Now with React in Core and the rebuilding of many parts of the admin with JS, we will have more real practical reasons to heed Matt’s call than we did before.” If the “JavaScript for WordPress Conference” goes well, Gordon said he hopes to make it an annual event. He is also considering doing a free day of workshops. All the talks given during the conference on Friday will be recorded and Gordon plans to drip them out over the coming months on his YouTube channel. Gutenberg 3.1 added a tips interface that supports and guides new users who are learning to navigate the editor’s blocks and settings. The tips appear when a new user opens Gutenberg, highlighting useful items on the page. Although the tips may seem cluttered and intrusive to users who already know what they are doing, they are a necessary evil for introducing the UI to new users. Gutenberg is not yet intuitive enough to be able to stand on its own without explanation inside the interface. 10up recently conducted Gutenberg usability tests that unearthed some startling realities about how new users interact with the new editor. The tests were done on previous versions of the plugin (2.9.2) with users who frequently create content using the classic WordPress editor. 10up asked testers, who have had no training on Gutenberg, to write a news-style blog post. One of the most surprising results was that participants struggled with the simple task of adding an image to a post. “Although the interface is clean, a lack of focused attention or hierarchy on the page became apparent,” 10up Experience Designer Sarah James said. “Participants struggled to complete tasks like adding an image that did not have a clearly exposed and labeled element like the title and paragraph fields. Heatmap tracking of the backend captured 734 unique clicks in the new post interface and only 40 of these clicks were on actual clickable elements. This suggests a struggle to find basic interactive elements, such as image blocks.” Participants also had a difficult time finding and inserting additional block types – several testers overlooked the “+” symbol that triggers interface for adding a new block. Gutenberg 3.0 and 3.1 have already improved on these pain points with changes that highlight common tasks. The 3.0 release redesigned the inserter, ditching tabs for collapsible panels. This makes it more friendly for hunting among blocks. Version 3.1 includes a new design of the sibling inserter (the “+” symbol that appears to allow user to insert blocks between other blocks). In addition to improving usability issues with the inserter, Gutenberg 3.1 fixes some of the mechanics of previewing and saving posts. Users can now preview changes to a published post without updating the post. The editor was also updated to trigger autosave as a standard save for a draft by the user currently authoring the post. HTML blocks that have been converted into shared blocks now show in preview mode, which makes it easier for users to see what they do and insert them visually. The code will only show if the user wants to edit the block. For a full list of the changes in 3.1, check out the release post on make.wordpress.org. WordCamps have a unique power to impact lives and careers. Without people and community, WordPress is simply software. But when you add in a large group of passionate people, people who are and are interested, everything changes. There’s excitement, encouragement, and education. Entrepreneurship can be a long and lonely road. Having a solid support community can make all the difference, and WordCamps can be a huge shot in the arm. This week’s HeroPress replay is by Juan Hernando from Pontevedra, Spain. His essay details his journey from an unknown member of his local WordPress community to being a leader in that same community. The post The Power Of WordCamps appeared first on HeroPress. TaxJar, a company that offers automated sales tax software, is hosting a free webinar June 27 at 11:30 AM CDT to answer questions regarding the U.S. Supreme Court’s decision on South Dakota v. Wayfair. The court ruled in favor of South Dakota on June 21st, 2018, allowing any state to require online sellers to collect taxes for sales made from customers in that state. The provisions identified in the South Dakota vs. Wayfair ruling identifies retailers making $100K+ or 200+ transactions in the state as having an “economic presence” that would require out-of-state retailers to render sales tax. However, it’s not yet clear how other states will measure sales tax liability. TaxJar has gathered a panel of tax experts to discuss the requirements of the new sales tax compliance burden for online businesses. Nearly 2,000 people are currently signed up to tune in and attendees can also submit questions in advance. A few popular questions submitted so far include: “How will we know which states we are required to pay taxes in, and do we have to create accounts in every state and pay for returns in all 50?” “I read that South Dakota, Colorado and Louisiana have a threshold of 100K in sales in their state to start collecting taxes. Is this really the case, and where can we find the threshold for other states?” “Does each state that wants to participate have to pass a law like South Dakota or is this now automatic for all states with a sales tax?” WooCommerce has created a guide to help users set up and collect taxes as required by the tax jurisdiction where their stores are located. Online store owners in the US and Canada can set enable automated tax calculations using either the WooCommerce Tax or TaxJar add-ons (both free), depending on whether the merchant operates within a single tax nexus or multiple nexus locations. Automatic sales tax calculations are also available for merchants using Easy Digital Downloads. Pippin Williamson built a free integration for EDD and TaxJar that passes all tax rate determinations to TaxJar to calculate automatically, eliminating the need for manual tax rate entry. The Supreme Court’s ruling is very new and many state-specific details are yet to be worked out, but state legislatures are likely to be highly motivated and eager to rake in this new source of revenue. The TaxJar blog will be a good source for updates as more compliance information becomes available. At WordCamp Europe I had the opportunity to sit down with Matías Ventura, the technical lead for Gutenberg. Ventura, who has been responsible for building the vision for Gutenberg (in addition to building the actual product), shared a few things the team might have done differently in the earlier days to improve its reception in the community. “I think we should have put a little bit more effort into clarifying what we meant by the ‘editor,\'” Ventura said. “When Matt announced that we’re going to be focusing on the editor, the WordPress community generally took it that we were going to focus on TinyMCE. But the idea from the start was to focus on the editing experience as a whole, how a user perceives that, which is the whole page. I think it took some time to rectify that that was always what was meant – to look at the whole editing interface at once. “With some of these projects people are going to be in different places at different times and things will coalesce and make sense at different paces. I think we’ve gotten to a point now where we have built enough of the Gutenberg vision that we can see where it can lead us.” Several representatives from the Gutenberg team were available at WordCamp Europe for informal chats with the community. They also conducted workshops and gave presentations to prepare designers and developers for what’s coming in the next few months. Momentum for the new editor is building and Ventura shared what he hopes the world will see when version 1 is included in core. “The thing that has been the most fulfilling, at least to me, has been seeing the regular users when they can use Gutenberg and build things that would have been very hard for them to do before,” Ventura said. “When they share those impressions – that they can build something that they are proud of and express themselves – to me that is the most fulfilling because that’s really one of the major points behind this. At the same time, I’m really looking forward to seeing what the design and developer community can build with it and where their imaginations can take us from there. Core is going to supply the infrastructure and the main building blocks but it’s everything that can be built around it that’s going to be exciting, as always with WordPress.” Ventura also described some of the interesting possibilities of templates, nested blocks, and child blocks, and how they can be combined to create more sophisticated solutions. He recommends the WordPress.org/Gutenberg page for resources on getting started with the new editor. Check out the video below for the full interview. If you happened to miss out on WordCamp EU this year, check out the following short film produced by Production Pool. Production Pool is a video production company based in Belgrade, Serbia that was hired to record all of the videos and wrap up the live stream for WordCamp Europe. The video is just shy of three minutes in length, highlights the size and scope of the event, and is well produced. You can almost feel what it was like to be an attendee. How many people can you name in the video? I’m a huge fan of Mailchimp, but dang does the service get abused by folks aggressively opting you into mailing lists. I have a very early, very generic Gmail address that people put as a filler address into every possible service and it gets tens of thousands of list and spam mails. A good trick to find and unsubscribe from all the Mailchimp lists you’re on is to search for As reported by the Wall Street Journal, and an interview about on the WP.com blog, Automattic has acquired the Atavist platform, magazine, and team. Looking forward to working alongside the team: we’re keeping the magazine going and it’ll complement Longreads, and integrating the best of the platform’s CMS and publisher features into WordPress.com and Jetpack and after that’s done providing an upgrade path so all of its publishers can move to being WordPress-powered. At his WCEU keynote address in Belgrade, Matt Mullenweg laid out a detailed roadmap for Gutenberg to land in WordPress 5.0 within the next few months, garnering mixed reactions from attendees. Gutenberg’s timeline is one of the most pressing questions for those who work in the WordPress ecosystem. The Gutenberg team has sustained a rapid pace of development over the past year with 30 releases since development began. There are currently 14,000 sites actively using the plugin and Mullenweg plans to roll it out to WordPress.com users in the near future. He announced that the WordPress 5.0 release could be ready as soon as August. In the meantime, the Gutenberg team will continue to refine its current features according to the roadmap Mullenweg outlined in his keynote: June 2018 July 2018 August 2018 and beyond Mullenweg said he hopes to increase Gutenberg usage to 100,000 sites with 250,000 posts made over the next few months. WordPress.com will be instrumental in that goal with a call to action for opt-in that will appear on several hundred thousand sites. In July, WordPress.com will switch the Gutenberg editor to opt-out. Mullenweg said he hopes to gather data from how users respond, especially those who have third-party plugins active on their sites. Switching between editing posts in the mobile apps currently breaks but Mullenweg anticipates this will be resolved by August, with full mobile versions of Gutenberg available by the end of the year. Mullenweg opened his keynote by drawing attendees’ attention to a new “Public Code” link in the footer of WordPress.org. This campaign, organized by Free Software Foundation Europe, aims to require any publicly financed software developed for the public sector be made available under a Free and Open Source Software license. Mullenweg also announced St. Louis, MO, as the next location for WordCamp US in 2019-2020. The local WordPress community in the city spans two states with members from both Missouri and Illinois who have hosted seven WordCamps since 2011. The process of getting products and client websites ready for Gutenberg is a leap for nearly every company and freelancer invested in the WordPress ecosystem. Mullenweg said he cannot guarantee a specific date for release but thinks that “5.0 is going be ready within a relatively short time frame.” Although many WCEU attendees expressed skepticism about the accelerated timeline for Gutenberg’s inclusion in core, most recognize the importance of working towards making their clients and products compatible with the new editor. Gutenberg technical lead Matias Ventura said it’s too early to tell whether the WordPress community will be ready by the time Gutenberg is included in core. “I think people have already been trying to get ready and we’re already seeing many major sites being launched using Gutenberg,” Ventura said. “From what we’ve seen with plugin authors building compatibility for Gutenberg, it seems there’s already enough momentum going on that it could be achievable.” Brad Williams, CEO of WebDevStudios, said his company’s team of engineers has been actively preparing for Gutenberg since late last year and is “very excited about what it means for the future of WordPress publishing.” Williams assigned two Gutenberg Leads internally to head up everything related to the new editor and conducted internal training with staff. WebDevStudios also built and released its own Gutenberg add-on framework called WDS Blocks, a framework that includes new custom blocks that many WDS clients use. “Having a potential release date, even if it’s only a target month, is incredibly helpful,” Williams said. “This gives us a goal to work towards with each of our clients to verify we are ready for the release. I expect the majority of our clients will not enable Gutenberg on release, but we still need to make sure we have an upgrade plan ready for WordPress 5.0. We are working closely with each of our clients so they understand what is coming, the benefits Gutenberg can provide them, and what a potential roll-out plan will look like. We are also making sure any new leads coming in the door are aware of Gutenberg and the impact it will have on their new WordPress project.” Gary Jones, plugin developer and WordPress engineer at Gamajo, expressed apprehension about the timeline. He also plans to make use of the Classic Editor plugin to opt sites out of using Gutenberg. “With 737 open issues, I think the August timeline may still be a little short,” Jones said. “That’s only for the ‘critical issues’ to be resolved but introducing such a massive change to the basics of managing content like this needs more than just the critical issues resolved; it needs all of the workflow to be very smooth as well.” Jones said he doesn’t think the typical rhetoric of getting a ‘1.0’ release out the door applies in the case of Gutenberg. “There’s too much riding on it for it not to make a great first impression for the user base who haven’t been following its progress,” Jones said. “A plugin can have a much quicker release turnaround time for non-critical improvements and fixes than what WP core would have.” Jones said he plans to wait until the merge proposal before tackling plugin compatibility and will wait until 5.0 is out to start improving the experience for his clients. He said this may require creating custom blocks or installing plugins that add custom blocks clients might need. “By then we’d also know how ACF, Pods. and other plugins we use, and the Genesis theme, are supporting Gutenberg editor (or not),” Jones said. Jake Goldman, President and founder of 10up, said his company already has an internal mandate that all new public plugins and major plugin updates must have at least “beta” support for Gutenberg. 10up’s Distributor product is already Gutenberg-ready and the company has several Gutenberg-ready plugins and updates expected to ship in the next 1-2 months. “Clients are trickier,” Goldman said. “We have two big client projects started in the last couple of months that are using Gutenberg, and some pretty complicated custom blocks and extensions. We have a couple of other customers who are curious or in the exploratory phase. Two big client projects have us a bit gun shy about adopting [Gutenberg] as the ‘standard’ on newer projects until it matures a bit more and begins to focus a bit more on the ‘enterprise use case / user stories’ – there are some real challenges with those user stories.” Goldman also said he was encouraged to hear that Calypso will adopt Gutenberg in the next couple of months, because he hopes it will address some of the confusion and fragmentation issues. He doesn’t anticipate Gutenberg actually landing in August, however. “I don’t see August, frankly, because I don’t think the core team has a clear vision for ‘how’ an upgrade with Gutenberg will work,” Goldman said. “That said, I suspect Matt is knowingly putting timeline pressure on the team – a bit of ‘if I say August, we can probably hit November’ type mentality.” Mason James, founder of Valet, said he is confident his clients and products will be ready after testing Gutenberg on hundreds of sites. His team is watching a few products that have compatibility issues but he is hopeful these will be resolved soon. “The timeline of August seems a bit optimistic,” James said. “I’d be surprised if that is met, but our clients will be in good shape if that happens. We’ve also been sending information to our clients via email, a whitepaper, to try to mitigate any surprises ahead of time. “We decided last year that Gutenberg was a tremendous opportunity for us to reinforce our value proposition to our clients,” James said. “It’s an ongoing important initiative for us this year; We’re playing for keeps.” Carrie Dils, a WordPress developer, consultant, and educator, has also jumped head first into getting her products compatible with Gutenberg ahead of the new timeline. “I’m feverishly working to get an updated version of the Utility Pro theme (my primary product) out the door,” Dils said. “The Gutenberg updates are just one part of a larger overhaul (including a minimum requirement of PHP7 and WP 5.0+). I’ve also made the decision not to incorporate Classic Editor theme styles. All looking forward, no looking back.” I really love this thread and the replies sharing stories about Val Vesa’s experience talking about WordPress in an Uber / Lyft ride: My @Uber driver last night, going home from airport asked me where was I coming from. In this episode, John James Jacoby and I are joined by Milan Ivanović who helped organize WordCamp EU in Belgrade, Serbia this past weekend. Ivanović describes what it was like to organize such a large event, challenges the team overcame, and a few details related to WordCamp EU 2019 that will be held in Berlin, Germany. John and I finished the show discussing Matt Mullenweg’s keynote presentation and Gutenberg’s proposed timeline. Gutenberg Team Panel Talks Release Timeline, Theme Building, and Customization at WCEU Next Episode: Wednesday, June 27th 3:00 P.M. Eastern Subscribe to WordPress Weekly via Itunes Subscribe to WordPress Weekly via RSS Subscribe to WordPress Weekly via Stitcher Radio Subscribe to WordPress Weekly via Google Play Listen To Episode #321: I looked up Uriahs, and sure enough, it was him! I was fascinated to learn what a WordPress community would look like on an island that size. As it turns out, he’s fairly alone in WordPress geographically. When I met him, he had never been off his tiny island in the Caribbean. Uriahs’ essay is about learning and finding a career in a global workspace, having a GOOD job, all while living someplace where that job didn’t even exist. The post Proving Geography Doesn’t Matter appeared first on HeroPress. Version 4.0.8 of the Akismet plugin for WordPress is now available. 4.0.8 contains the following changes: To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in the WordPress plugins directory. Continuing my series about ScoutDocs and the process of building it, this week I’m talking about Build Tools. Coding in React involves JSX, a bizarre-but-wonderful XML syntax that you dump directly into the middle of your JavaScript code. It feels exquisitely wrong. Browsers agree, so your JSX-containing JS code will have to be transpiled to regular JavaScript. This can involve using a complex maze of tools. Babel, NPM, Webpack, Browserify, Gulp, Grunt, Uglify, Uglifyify (yes, you read that right), and more. You have decisions to make, and you will find fierce advocates for various solutions. For ScoutDocs, I decided to go with Grunt for task running, because I was already comfortable with it, and I needed it for grunt-wp-deploy. Use a task runner you are already comfortable with. Even if it is just NPM scripts. You’re learning a lot of new things already. It’s okay to keep your task runner setup. Next, I had to choose a JS bundler which would let me write and use modular code that gets pulled together into a browser-executable bundle. After deliberating between Webpack and Browserify, I chose Browserify. Webpack is really complicated. It is also very powerful. I recommend you avoid it until you need it. I haven’t needed it yet, and found Browserify to be easier to configure and use, even though it’s a bit on the slow side. As I was building ScoutDocs and tweaking my dev tools, tweaking my Grunt file, and writing code to search/replace strings etc, I began to feel like the time I was spending too much time on tooling. Was I becoming one of those people who spend all their time listening to productivity podcasts instead of… being productive? I can see how someone could get sucked into that trap, but putting a reasonable amount of time into configuring your development tools can pay dividends for you beyond simply the time saved. It can also prevent mistakes, keep you in coding mode more often, and increasing your confidence in your code builds. Spend the time up front to make your tools work for you. Other posts in this series: Morten Rand-Hendricksen, Senior Staff Instructor at LinkedIn Learning, has released WP Rig. WP Rig is a WordPress starter theme and build process combined into one. The starter theme provides a minimal set of templates with the ability to drag-and-drop files from the WordPress template hierarchy. It contains a heavily optimized code and file structure, support for lazy-loading images, and documented helper functions. The build process requires no configuration and provides a modern foundation to develop on top of. Although WP Rig ships with a starter theme, the build process works with any theme you choose to use. WP Rig uses Gulp to manage and optimize files, BrowserSync to immediately preview from inside the browser, and ES2015 to parse JavaScript. Babel, PostCSS, and CSSNext is used to parse CSS. The WordPress Coding Standards and ESLint are used to check code quality. VS Code is tightly integrated with WP Rig but developers can use any code editor they choose. Rand-Hendriksen says the goal of the project is to provide a starting point where developers can write accessible and performant code from the start using best practices. “WordPress and the web it lives on has evolved,” he said. “So have the tools we use to build experiences and interactions on and with the web. WordPress theme development is no longer ‘just’ about writing PHP and CSS and JavaScript. “It’s also about accessibility and build processes and coding standards and performance best practices and and modern coding languages and browser support and a myriad of other topics. “WP Rig bridges this gap by building accessibility, performance, coding standards, and modern coding best practices in by default.” LinkedIn Learning donated Rand-Hendriksen’s time to WP Rig. In collaboration with XWP, Google, and other members of the WordPress community, it was released as an open source project that is maintained by him and Rachel Cherry. “It is not owned or branded by any company, nor beholden to a company goal or ideology,” he said. “The purpose and goal of WP Rig is to provide the WordPress community with a theme development rig that puts accessibility, performance, and modern best practices in the front seat to the benefit of the end-user and the web as a whole.” You can download WP Rig for free from the project’s site or on GitHub. To learn how to use it, LinkedIn Learning is offering a free course entitled “Build WordPress Themes with WP Rig.” The course covers a myriad of topics including, configuring the VS Code workpace settings, Templates, and AMP integration. For more information about WP Rig check out the project’s official announcement. WordCamp Europe hosted a successful contributor day in Belgrade despite a wi-fi outage during the first half of the day. The event posted record numbers with 529 attendees registered to contribute across 24 teams. Contributors had the opportunity to make connections and conversations with team members and representatives from other teams while the wi-fi was down. Had the chance to meet @aaroncampbell and discuss WordPress core security with him and a couple of attendees on #wceu contributor day. Thanks for the amazing chat folks! It is my first WordCamp Europe and it definitely won\'t be the last! — Bojidar Valchovski (@bdvalchovski) June 14, 2018 Had an awesome #WCEU contributor day today. Had some great conversations and made good progress on a few patches to improve the development experience despite the WiFi issues. Was also very proud to see SIX @Yoast\'ers lead different contributor teams! #WordPress #family — Omar Reiss (@OmarReiss) June 14, 2018 Contributors submitted patches and made more progress online later in the day when the wi-fi resumed. So proud of the WordPress Coding Standards team at #WCEU contributor day. Look at all the patches which are flooding in!!!!@flipkeijzer @GaryJ @fimdalinha @Wonderm00n @niq1982 @moorscode @vladilie94 @MCiufudean pic.twitter.com/lchrR4ZmHX — Juliette (@jrf_nl) June 14, 2018 Look at all these lovely people contributing to #WordPress at #WCEU Contributor Day Thank you, you rock! pic.twitter.com/LtRlyolYPL — Milana Cap (@DjevaLoperka) June 14, 2018 Attendees worked on a variety of different projects from improving the project’s coding standards to documenting best practices for hosts working with WordPress. Evangelia Pappa traveled from Greece to attend her first WordCamp Europe, joining the community team to get answers about helping her local deaf community. “In my country you have a lot of deaf people who want to attend WordCamp and also the meetups that we do for the Greek WP community,” Pappa said. “We have found a way to assist them while they are at WordCamps with sign language, but are still struggling with meetups, so I am trying to find answers here in order to help other members of the community.” Rocío Valdivia traveled from Spain to attend her 6th WordCamp Europe and also joined the Community Team for contributor day, creating documentation and mentoring WordCamp organizers. “I’ve been having a meeting with the WordCamp Nordic organizing team,” Valdivia said. “We are talking about the next WordCamp Nordic, a large regional WordCamp, that will be held next year in Helsinki in March.” The Hosting team was also able to work, despite the wi-fi outage, bringing together representatives from different countries and hosting companies. “We’ve been going through and writing some best practices and documentation,” Michael Schroder said. “We’ve been making some good progress on the performance area of the docs, so I feel pretty good about getting some of that committed today.” The Contribution Area is being put to good use at #WCEU . First time we’re using a dedicated room to allow for a continuance of Contributor Day. pic.twitter.com/lTgR8OdLBf — Remkus de Vries (@DeFries) June 15, 2018 For the first time, WordCamp Europe also set aside a spacious, designated room for attendees who wanted to continue collaborating on contributions during the main conference. Wifi outages are a common occurrence at WordCamp Contributor days. While many attendees I spoke with said they were frustrated and inconvenienced by the inability to be productive, others expressed happy sentiments about the opportunity to be together in one place. “The most important thing about contributor day is talking to people, getting to know each other, face timing in real life,” Polyglots team lead Petya Raykovska said. “These are always very useful connections to have, learning everybody’s name, asking questions about their experience contributing, and them asking you questions about general experience with the team. It’s actually been great. I feel like it’s given people a chance to talk to each other. No time is lost in contributor day, really.” Welcome to the Post Status Draft podcast, which you can find on iTunes, Google Play, Stitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards. In this episode, Brian is joined by guest-host Brian Casel. Brian runs Audience Ops, a productized service that offers all aspects of content creation for companies. Brian has been in the WordPress community for a long time, and for years has worked on creating processes around his business to enable him to get beyond a freelancer work life and into treating services like products. Before Audience Ops, he ran Restuarant Engine — a niche WordPress site provider, where he really honed many of the processes his company still uses today — which he sold for six figures. We dig in to why he decided to make a transformation with his businesses to be so process oriented, and how he turned that into the 30-person organization it is today, as well as the various courses and communities around Productize and Scale. By the way, if you like this interview, Brian has an active job posting on Post Status for a blog content writer for Audience Ops. Yoast SEO Premium gives you 24/7 support from a great support team and extra features such as a redirect manager, recommended internal links, tutorial videos and integration with Google Webmaster Tools! Check out Yoast SEO Premium. The Gutenberg team took questions from a full room users and developers this morning before diving into the specifics of the editor’s design, block creation, and how to further extend the new interface. The first question they addressed is the one everyone is asking: When will Gutenberg land in core? The team said the editor is pretty close to feature complete and should achieve that in the next few months when version 3.3 is released. At that point the focus will be on refining the current experience. They estimate this to happen in June or the first week of July but also hinted at more information coming in Matt Mullenweg’s keynote address this afternoon. Developers also asked about the criteria that will be used to decide that Gutenberg is ready for a WordPress release. The project has a scope and features MVP issue on GitHub that provides an overview for the major functionality that will be introduced in the first version of the new editor. It shows which features have already been shipped and which ones are remaining. The team explained that many of the final features have come from developer and user feedback. Some features were not necessarily planned for V1, but it became more apparent that these were needed because they improved either the developer or user experience. For example, within the past four or five months the team found that the child blocks would be necessary to allow developers to be more expressive in extending the editor. A few of the remaining issues include inline images and post locking for concurrent users, but the team doesn’t anticipate any major new features on the horizon before V1 is released. Gutenberg engineers also assured workshop attendees that the project is being built with backwards compatibility in mind. One person asked what will happen when the 5.0 release lands. The team explained that the Gutenberg update will not change all the content on WordPress sites. When users open a post in the editor they will have the option to convert that content to block format so it will work with the new editor. If it doesn’t quite work, users be able to fall back to the classic editor. The team said they took great lengths not to alter how WordPress deals with data. Gutenberg does not change the content structure. One of the cornerstones for the project is providing an update that will not fragment the content structure. There will be a lot of resources available ahead of the release for helping everyone move forward together. Gutenberg engineers said they are working to be conscious not to delay the project, because the longer the delay, the more potential users WordPress is losing because the software is not easy enough for them to build and customize content and websites. Gutenberg designers and engineers also tackled questions about how the new editor will change the theme building experience. Design lead Tammie Lister emphasized the importance of theme developers first getting better at creating themes that do not try to do everything. The basic purpose of a theme is to style the frontend and provide an editor style. One potential way forward for theme developers is to provide additional features by releasing a suite of blocks via a plugin. Lister said she hopes that themes will become a lot lighter in the Gutenberg era and encouraged developers to utilize style guides. The team also said that existing themes will continue to function and redesigning a theming API, without the hassle of editing a bunch of PHP files, may be possible in the future. However, it’s too early to know what that will look like. For now, the rendering engine is not changing. Theme developers interested in Gutenberg compatibility should start looking towards deconstructing their themes into individual elements and learn how to express a theme as a list of blocks. Attendees asked several questions regarding the specific plan to implement customization, or live previewing, after Gutenberg is in core. The current phase 1 handles content editing and puts the infrastructure in place to support customization. There are some issues on GitHub for transforming widgets into blocks, which will be a step towards the site building experience. The team has already implemented direct manipulation on the WYSIWYG road but phase 2 will cover more aspects of customization. Gutenberg is not ready to replace the Customizer anytime soon, but the next phase will explore what a block-based experience of customization will look like. When asked if Gutenberg will “kill off some of the page builders,” the team said the goal is for page building type applications to be able to use Gutenberg as a springboard for different implementations that extend the editor in ways that benefit different types of users. An attendee asked how the team plans to enhance adoption once Gutenberg lands in core. The team said they are working on an experimental feature called ‘tips’ that offers a story walkthrough of the publishing workflow. It includes helpful nudges to assist users in getting better at navigating the interface. The wider ecosystem has already responded with courses and tutorials to help developers get on board. The WordPress training team is also working on some training materials to use at WordCamps with tutorials for developers to learn how to convert existing plugins and themes to be Gutenberg-ready. In this episode, John James Jacoby and I are joined by Jack Lenox, Software Engineer at Automattic, to discuss his new project, SustyWP. Lenox explains how he built the site so that it only has 7KB of data transfer, what sustainability on the web means to him, and the relationship between sustainability and optimization to create a better user experience. We end the show discussing the latest WordPress headlines and share information on how you can watch WordCamp EU for free. BabaYaga: The WordPress Malware That Eats Other Malware Next Episode: Wednesday, June 20th 3:00 P.M. Eastern Subscribe to WordPress Weekly via Itunes Subscribe to WordPress Weekly via RSS Subscribe to WordPress Weekly via Stitcher Radio Subscribe to WordPress Weekly via Google Play Listen To Episode #320: WordCamp EU 2018 is scheduled to take place this weekend in Belgrade, Serbia. Although the event is sold out, you can watch the event for free via livestream. Simply visit the WCEU tickets page and register a livestream ticket. Sessions begin on Friday, June 15th. To see a list of sessions and speakers, check out the event’s schedule. Note that there is a six hour time difference between Eastern Daylight Time and Belgrade, Serbia. As we near the halfway point of 2018 and no imminent release of WordPress 5.0 on the horizon, it will be interesting to see what information is shared during Matt Mullenweg’s keynote. I think I met Ed Finkler at WordCamp Milwaukee in 2016. It was at the speaker dinner, and he sat across from me for a while. He seemed like a pretty normal WordPress developer and several weeks later I asked him to do a HeroPress essay. His answer surprised me. “Well sure, that sounds pretty cool, aside from the fact that I don’t really do WordPress anymore”. As it turns out, he had mostly retired from active WordPress development. His every day world was now filled with working in different frameworks and languages, amongst people who help WordPress in disdain. But Ed’s view fascinated me. For all that he was working with more modern frameworks, WordPress is what made him a great developer. The empathy and compassion for the user that WordPress holds so dearly carried over into the rest of his life. So what was he doing at WordCamp? Spreading the word about his cool new organization, which I will leave for you to read about. The post By Helping Others, I Save Myself appeared first on HeroPress. WordCamp Orange County, CA, took place this past weekend and the winners of the Plugin-a-Palooza have been crowned. Nathan Tyler and Natalie MacLees took the first place prize of $3,000 with their submission, Plugin Detective. When it comes to troubleshooting WordPress, disabling and re-enabling plugins is one of the first steps in the process. This is time consuming and involves browsing to the plugin management page multiple times to turn a plugin on or off. Plugin Detective simplifies the process by quickly identifying the culprit. Once installed, a Troubleshooting quick link is added to the WordPress Toolbar. From here, users can open or continue a case. When a case is opened, a bot named Detective Otto asks users to navigate to the page where the problem is occurring. After the location is identified, users inform Detective Otto which plugins are required for the site to function properly. Interrogations is the act of of disabling and enabling plugins. Multiple interrogation attempts are made until the culprit is identified through the process of elimination. The following video does a great job of explaining and showing how it works. It can also be used to identify and fix White Screen of Death errors caused by plugins. Plugin Detective is partly inspired by a software program from the 90s called Conflict Catcher. “I used ‘Conflict Catcher’ to troubleshoot conflicts between system extensions on my Mac,” Tyler said. “I thought the concept was cool and would often run it for fun to try to figure out how it worked. Eventually, I learned that the computer science concept is a ‘binary search.’ “Applying the concept to WordPress plugins seemed like a good approach to the plugin conflict problem we all experience.” Tyler developed the functionality and MacLees is credited with the plugin’s design, user experience, JavaScript, API calls, etc. The duo plan to establish relationships with plugin authors to help get them better bug reports. If you troubleshoot sites often or want an easier way to figure out which plugin is causing a conflict, consider adding Plugin Detective to your toolkit. Plugin Detective is free and available for download from the WordPress plugin directory. As the traveller who has once been from home is wiser than he who has never left his own doorstep, so a knowledge of one other culture should sharpen our ability to scrutinize more steadily, to appreciate more lovingly, our own. WordCamp Europe debuted its new official mobile app today, providing attendees with a quick way to access the event’s schedule, maps, and announcements. Several unofficial apps have popped up over the years, but this is the first one produced and supported by WCEU organizers. The team opted for creating a PWA (Progressive Web App), which loads inside a mobile browser while offering an experience similar to native apps. It’s also far less complicated than supporting multiple platform-specific mobile apps. Users don’t have to download anything, since it is loaded via the browser, and the site can be accessed offline in case of network failure. The app was built using React on the frontend and is hosted on a node server. It uses WordPress for content management on the backend, along with the WordPress PWA plugin and OneSignal Push Notifications . “This first iteration isn’t scalable for the community, but we wanted to test the possibilities and have the opportunity to explore what it would take to eventually make this available for all WordCamps,” WCEU team leader Jenny Beaumont said. “It’s a lofty goal, and we’re not there yet, but we’ve learned a lot along the way and looking forward to pursuing the ambition.” Attendees can expect to find any last minute schedule changes in the app and may also opt to receive push notifications for important updates. The Favorites feature lets users to bookmark all the sessions they plan to attend and toggle them into view. WCEU’s official PWA is lightweight and re-usable – it can easily be updated to display content for future editions of the WordCamp. “We’ll only need to update our feeds, since WordCamps are issued a new website every year, but the basic functionality will be in place and can be developed on as browsers offer better support and new team members join the team with their great ideas,” Beaumont said. The current theme is open source and available on GitHub. It can be rebranded for future events to reflect the design for that year and city. Beaumont said the long term goal is to have a PWA generated directly from WordCamp sites. The technology for badge creation will be getting an overhaul as well this year. WCEU organizers are renting the materials from a Azavista, a Dutch event management company that provides badges, badge printers and scanning devices (iPhones). The new tech will make it more efficient for volunteers to process more than 2,000 attendees at registration. The badge scanners also streamline attendee interaction with sponsors, replacing the signup sheets and tablets that sponsors usually have for collecting attendee information. “It’s tied to attendees’ Attendee ID number, created when attendees register on our WordCamp site,” Beaumont said. “Say an attendee is visiting a sponsor booth and having a nice conversation, the sponsor can ask if they’d like to leave their name and email address to stay in touch. If the attendee agrees, then they show their badge to have it scanned by the sponsor using the closed-technology on devices provided by our vendor. “ After the event, WCEU organizers will send the names and email addresses of attendees to the sponsors based on the signups from scanned badges. If attendee feedback is positive, Beaumont said organizers plan to implement the quick registration feature next year. This will allow attendees to receive a QR code via email and get it scanned in order to receive their badges. These tech improvements should relieve traffic bottlenecks at the registration desk and sponsor booths, freeing up more time for WCEU attendees to spend in sessions and networking activities. Continuing my series about ScoutDocs and the process of building it, this week I’m talking about React. After the first iteration of ScoutDocs was built and none of the partners on the project were happy with its experience, it became clear that in order to deliver a clean, simple interface for file uploading and sharing we needed to leave the bounds of the WordPress admin. It didn’t take me long to decide that React would be the tool I used to build the new interface. There is an incredible momentum behind React, and a rich ecosystem of libraries, tools, and educational resources. But beyond all that, React is just plain fun to code. Once you accept the central premise that a view layer and the controller that handles that view are inextricably linked, and once you get over the weirdness of quasi-HTML-in-JS that is JSX, coding in React is a joy. Make no mistake, learning React is not a weekend project. It will take a while before it feels like home. But once you get it, you feel very powerful. The first lesson I learned was don’t learn React by rewriting your app in React. I tried this. I read some tutorials about React and it felt straightforward, and I was like “let’s do this.” This was a bad idea. I was overwhelmed. I had no idea where to start. Next, I tried following some of the interactive tutorials that required me to build a simple React app and then slowly add functionality to it, refactoring it multiple times, until I understood not just the code that I ended up with, but the process of creating it. This went much better. Start small, and build a bunch of “toy” apps before you use React for your own apps. Once you are able to “think in React”, you’ll be nearly physically itchy to go re-code your app in React, and that’s how you know you’re ready. If you jump the gun, you are going to get stuck a lot, and it will be frustrating. As you learn React and explore the React ecosystem, you will likely hear about Redux, which is a system for storing application state, and is commonly used with React apps. It looked complicated, and even its creator wrote a post saying you might not need Redux. So I skipped it. This was probably the right call when I was starting out. But as I fleshed out the ScoutDocs app and its complexity increased, I ran into a problem. See, React breaks your app up into these nested chunks of UI and functionality called components. Data flows down through your components. So if a user updates their name, that change will flow down from higher up components like a Page component down to a PageHeader, down to a NavBar, down to a UserStatus. Once this is all set up and you update data in a parent component, the changes automatically flow downstream, and the UserStatus component updates and re-renders. It’s great. Except that there are a bunch of intermediate components that accept and “forward” that user name data to their children, without actually caring about it themselves. When you inevitably refactor something and need to add new data that flows through these components, every single intermediate one needs to be updated to pass it on. It is tedious. You will hate it. Worse, because events in React flow upwards, if a user updates their name in the UserName component, that change needs to flow up to ProfileForm, up to Profile, up to Page, and then up to your main App component. When you refactor, you need to make sure this event forwarding chain stays connected. Yet more tedium that you will hate. Redux solves this by letting your React components, no matter how deeply they are nested, subscribe directly to the data they need. I really wish Dave Ceddia had written this excellent post about Redux two months earlier. If you have a component structure like the one above – where props are being forwarded down through many layers – consider using Redux. This is what I needed to hear, and knowing this would have saved me a lot of frustration and time that I now have to spend converting ScoutDocs to use Redux. Use Redux when your React data flow starts to get unwieldy. Another mistake I made early on was making the data my React components accepted too restrictive. For example, I wanted the ability to prefix a Then I needed to add a second icon in front, in some circumstances. Ugh. I certainly didn’t want to do This can be used for many more situations than the one (“put an icon before the row”) that I’d originally envisioned. Your React components should be flexible, so they can be reusable. Other posts in this series: To help your site be transparent to your visitors about using Akismet to process comments (think privacy and GDPR), our WordPress plugin now gives you the option to display a notice under your site’s comment forms. Site owners can decide if they want to display it, or not, on a per-blog basis. But we’ve also given options to developers to extend the behaviour, and content, of said notice. The display of the notice itself, as well as the in-admin notice to set it for one’s site, all revolves around a new If the option is not yet set, the front-end notice will not be displayed, but the in-admin prompting site owners to set it will. Once set to either In As seen above, the default front-end privacy notice is wrapped in a If you have a lot of sites/blogs, you might also now be wanting to set the privacy display in bulk. There are a few ways of doing that. You can create a quick plugin that checks if the Or you could write a script that loops on your blog list, and set the same option, in one run. In this episode, John James Jacoby and I are joined by Gary Pendergast, a WordPress core contributor, to discuss what’s new with Gutenberg. We find out what happened with WordPress 4.9.6, and discuss WordPress’ future. We also discuss Microsoft’s acquisition of GitHub and when WordPress core development might transition to GitHub. Last but not least, we share the news of the week. Microsoft Acquires GitHub for $7.5B In Stock Next Episode: Wednesday, June 13th 3:00 P.M. Eastern Subscribe to WordPress Weekly via Itunes Subscribe to WordPress Weekly via RSS Subscribe to WordPress Weekly via Stitcher Radio Subscribe to WordPress Weekly via Google Play Listen To Episode #319: Simple:Press, a forum plugin for WordPress that has been around for more than a dozen years, is available for adoption. Developers Andy Staines and Steve Klasen announced their plans to shutdown operations last August on their customer support forum and have had little luck finding a suitable replacement. Staines and Klasen will retire on August 1st. Everything related to the site, including the domain, plugin code, customer information, income, etc. will transfer to the new owner with no strings attached. The forum plugin has been a labor of love for a long time. We don’t really want to see the plugin die because we have decided to retire. It has provided us a good secondary income for many years and has good potential for anyone who wished to make a go at it. Simple:Press is not available on the WordPress.org plugin directory and generates revenue through memberships, themes, and plugins. Those interested in taking over the plugin or to find out more information can contact Klasen and Staines through the Simple:Press Forum contact form. BuddyPress 3.1.0 is now available. This is a maintenance release that fixes 23 bugs and is a recommended upgrade for all BuddyPress installations. For more information, see the 3.1.0 milestone on BuddyPress Trac. Update to BuddyPress 3.1.0 today in your WordPress Dashboard, or by downloading from the wordpress.org plugin repository. Questions or comments? Check out the 3.1.0 changelog, or stop by our support forums or Trac. When Marcel Schmitz released his WordCamp for iOS app, there was concern that it violated the WordCamp Trademark policy. Schmitz has changed the name of the app to WP Camps, describes it as a companion app for WordCamps, and has added a number of upcoming events. In addition to these changes, Schmitz has also redesigned the app’s icon due to user feedback. Version 1.1 sets the stage for search, chat, a who’s on stage feature, and more. If you’re organizing a WordCamp or WordPress event and want it added to the app, you can contact Schmitz on Twitter. You can also click on the About section within the App to send him an email. WP Camps is an application for iOS devices and is available for free on the Apple App Store. Settle in, because you are about to read some worst and some even worst experiences that I have had in my life and yet how I am still pulling myself together. Before we get into it, I am going to tell you something about me. I am Libertarian, otaku. I LOVE to play with words. By profession I am an IT engineer but by passion I am a writer. I am writing about Microsoft & other Technologies for various publications. I am also writing about Exciting Technology & Mind-Boggling Science and am a co-founder of 2 sci-fi and technological news platform. I was so engaged in the world of Computer and Technology since the school time. I was excited about HTML, CSS, C and other basic computer programming concept since school. Recently, I completed my Bachelor of Engineering study (result is yet to be declared, but I think I will pass in all subject). And as of now, I don’t have any plans for further studies. Phew. My cousin introduced me with WordPress in 2010 when I completed 10th standard (grade). OMG! It’s been 8 years! However, at that time he gave me only basic WordPress work i.e.data entry. But later in college I was getting engaged in various freelancing work (mostly WordPress related) and that’s where the real journey with WordPress began! As of now, I have designed & developed tons of websites with WordPress and modified up to dozens of themes. I enjoy working in WordPress so much that sometimes, I forget to take dinner. I am so committed to my work, it’s like passion to me. Fast forward to September 2016, I submitted my first WordPress theme “Frindle” to WordPress theme directory. After waiting for nearly 5 months in theme review queue, in January 2017, the theme reviewer rejected my theme, because theme had “5 or more issues” (31 I remembered correctly). And I was back to square one. But after this setback I pushed myself and resubmitted theme again in the very next month. This time everything worked out and the theme was approved in April 2017 and went live on 1st July 2017. A friend of mine from WordPress community set me up for an interview in her company. I got selected and they wanted me to join from very next day. I was so thrilled and excited but as I was still pursuing my engineering study. But, my college didn’t signed the NDA (for attendance) so I had to give up the opportunity. Later on, I submitted 2 more themes to the official WordPress theme directory, Horkos & Ogee. Both of them are live right now and Ogee is getting significant user base. Later on, I joined a small web development company as a remote WordPress developer. And worked on so many projects. While I was in the last year of study, my cousin set me up for an interview for internship/training program. Everything was going perfect. The interviewer was impressed from my resume, but all of sudden, he started asking questions about technology which I am not aware of. I straightly said, “With all due respect sir, I don’t know anything about it, but if it’s worth I am ready to learn.” God knows what he heard but within 2 minutes he ended up saying “You are just wasting your life. You can go now.” I was like, man, it took me 30 minutes to find your office, please hear me out. But everything changed after this interview. When I was driving home from this interview, I got a call from an old friend and he asked me to write sci-fi articles for his new website. Wait! On the same day I got an email from a popular news website asking me to come onboard as a senior editor. I was like this is the worst best day of my life. Well, here’s something good. In addition to this, right now I am perusing internship for PHP/WordPress and front-end developer in an MNC company. I am learning so many things nowadays, collaborating with team, project management, communication with clients and more! Every day, I wake up with a new task and go to sleep with a new idea. What is most aspiring in this is the platform that we all associated with. Even though I practice polyphasic sleep, I still need 5 extra hours in a day. I don’t work for money, I just do it because I am so passionate about it. I mean money is important but work is not just about it. It’s about the satisfaction I feel when I see the impact I make on the community. I am 22, but as of now, I don’t have a 9 to 5 permanent “job” nor a shoulder to cry on (you know what I mean). But I work a LOT. I love my keyboard. I’m highly sensitive. I spend my days immersing myself in the personal growth world. Maybe in some ways, I’m (definitely) not normal – some of the ways that I go against the grain of the society. And you know what? It’s okay. So yeah, I’m comfortably okay with the basic skills which I possess. I wonder when people will understand that it’s okay to be “okay”. Everything that was still is. So, whether I like it or not, I pull myself together and I do it all again. The post Work is not just about Money appeared first on HeroPress. Jack Lenox, a Software Engineer at Automattic, has launched a new site called SustyWP that focuses on web sustainability using WordPress. By removing the parts of Underscores he didn’t need, using one inline SVG image, no sidebars, limited CSS, and no webfonts, Lenox was able to launch a WordPress site that only has 7 Kilobytes of data transfer. As you might expect, the site crushes page speed and performance benchmarks. The site is also hosted in a data center that uses 100% renewable energy. To learn how and why he built the site, check out his detailed blog post. While only transferring seven kilobytes of data is commendable, these days, websites are feature-rich. I wonder how practical his methods are for large and complex sites. Now that ScoutDocs is in the WordPress plugin repository, I’d like to share some lessons I learned making it. Every project teaches me something — this one taught me a lot. In this weekly series, I’m going to cover: First up, lessons learned about outsourcing. When we started making ScoutDocs, the question was raised as to whether it would be beneficial to outsource any of the coding. My time was valuable and limited, so I figured that if I had another developer code while I slept, I could spend an hour in the morning reviewing the code and giving them direction for the next workday. I had visions of quickly scanning code while my morning coffee brewed, twirling an invisible moustache, and muttering “good, good.” This is not what happened. The issue I quickly ran into was that for any nebulously defined problem, someone else’s solution was unlikely to match what I wanted. Their assumptions would not be the same as mine. As a result, the odds of me being happy with their solution were very low. I spent a lot of time rewriting code. And because I was spending all my time “fixing” the code I wasn’t really looking at the product as a whole. When the contractors were done, my ScoutDocs partners and I looked at it, and we realized that it… was bad. Forget code quality, which despite all my vain reshuffling was still lacking: what we had was just overall a terrible user experience. Rather horrifyingly, we admitted that what we needed to do to give it the user experience we wanted was nothing short of a total rewrite. I rolled up my sleeves, learned React, and rewrote ScoutDocs until almost nothing of the original code and user experience remained. So was outsourcing a waste? Not completely. Some code was retained, mostly relating to the Amazon S3 interface. I was glad that someone else had experienced the singular joy of spending an eternity lost in a maze of Amazon Web Services documentation and confusing code samples. Additionally, if I had set out to build the initial version of the code, it would have taken a lot of my time (which I did not have much to spare), and might have meant that our horrifying realization would have been delayed for several months. Knowing what doesn’t work is valuable, even if you have to throw it away. That’s mostly what we had gotten for our money: figuring out what didn’t work. If outsourcing can get you to these realizations sooner or for less money, it might be well worth it. As I rewrote the software, my partners asked me a few times if I regretted outsourcing. I didn’t, for the above reason, but also because outsourcing had solved some of the coding issues that would have been a slog for me. However, if I was doing it all over again, I would have done more work upfront to identify specific, well-defined tasks that I wanted to outsource. Delegation makes sense when the task is well-defined. At the extreme, you could spend so much time redoing work and asking for revisions that you’d have been better off just doing it yourself. If you can specify exactly what constitutes success in a task, and the time it takes you to specify that is much less than the time it would take you to do the task, outsource it. Check back next week for my thoughts on rewriting ScoutDocs in React. This month saw two significant milestones in the WordPress community — the 15th anniversary of the project, and GDPR-related privacy tools coming to WordPress Core. Read on to find out more about this and everything else that happened in the WordPress community in May. Last Sunday, May 27, WordPress turned 15 years old. This is a noteworthy occasion for an open-source project like WordPress and one well worth celebrating. To mark the occasion, WordPress communities across the world gathered for parties and meetups in honor of the milestone. Altogether, there were 224 events globally, with a few more of those still scheduled to take place in some communities — attend one in your area if you can. If your city doesn’t have a WordPress meetup group, this is a great opportunity to start one! Learn how with the Meetup Organizer Handbook, and join the #community-events channel in the Making WordPress Slack group. In light of recent changes to data privacy regulations in the EU, WordPress Core shipped important updates in the v4.9.6 release, giving site owners tools to help them comply with the new General Data Protection Regulation (GDPR). It is worth noting, however, that WordPress cannot ensure you are compliant — this is still a site owner’s responsibility. The new privacy tools include a number of features focused on providing privacy and personal data management to all site users — asking commenters for explicit consent to store their details in a cookie, providing site owners with an easy way to publish a Privacy Policy, and providing data export and erasure tools to all site users that can be extended by plugins to allow the handling of data that they introduce. To find out more about these features and the other updates, read the 4.9.6 update guide. You can also get involved in contributing to this part of WordPress Core by jumping into the #core-privacy channel in the Making WordPress Slack group, and following the Core team blog. In a similar vein, WordPress.org itself has received an updated Privacy Policy to make clear what is being tracked and how your data is handled. Along with that, a Cookie Policy has also been added to explain just what is collected and stored in your browser when using the site. These policies cover all sites on the WordPress.org network — including WordPress.org, WordPress.net, WordCamp.org, BuddyPress.org, bbPress.org, and other related domains and subdomains. It’s important to note that this does not mean that anything has changed in terms of data storage; rather that these documents clarify what data is stored and how it is handled. If you have a story we should consider including in the next “Month in WordPress” post, please submit it here. Our website address is: http://localhost. When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection. An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment. If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website. If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year. If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser. When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed. If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day. Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website. These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracing your interaction with the embedded content if you have an account and are logged in to that website. If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue. For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information. If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes. Visitor comments may be checked through an automated spam detection service.\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
return \'Done!\';\\n}<\\/code><\\/pre>\\n<\\/li>\\n\\n
\\n
return $admin_actions;<\\/code><\\/pre>\\n\\n
\\n
\\/\\/ Return an array of IDs\\n \\/\\/ e.g. array( 1, 2, 3 );\\n return $editable_fields;\\n}<\\/code><\\/pre>\\n<\\/li>\\n\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
return \'Done!\';\\n}<\\/code><\\/pre>\\n<\\/li>\\n\\n
\\n
return $admin_actions;<\\/code><\\/pre>\\n\\n
\\n
\\/\\/ Return an array of IDs\\n \\/\\/ e.g. array( 1, 2, 3 );\\n return $editable_fields;\\n}<\\/code><\\/pre>\\n<\\/li>\\n\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
\\n
In Progress
\n\n\n
\n\nJuly
\n\n\n
\n\nAugust and beyond
\n\n\n
\n\n\n
\n\n
\n\nAnother Successful WordCamp Europe
\n\nUpdated Roadmap for the New WordPress Content Editor
\n\nWordCamp Incubator Cities Announced
\n\n
\n\nFurther Reading:
\n\n\n
\n\n
\n\nLocal Communities Celebrate the 15th Anniversary of WordPress
\n\nPrivacy Tools added to WordPress core
\n\nUpdates to the WordPress.org Privacy Policy
\n\n
\n\nFurther Reading:
\n\n\n
\n\n\n
\n
Privacy
\n\nComments
\n\n
Privacy Policy Page
\n\n
Data Handling
\n\n
Data Export
\n \n Data Erasure
\n \n \n
\n\n
http://.wordpress.org/wp-login.php?action=confirmaction…
take this action.
Your friends at WordPress
http://wordpress.org
\n\nMaintenance
\n\n\n
\n\n
\n\n
Aaron D. Campbell, Aaron Jorbin, abdullahramzan, Adam Silverstein, Alain Schlesser, allendav, Andrea Fercia, Andrea Middleton, Andrew Ozz, Ayesh Karunaratne, Birgir Erlendsson (birgire), bridgetwillard, Burlington Bytes, Chetan Prajapati, claudiu, Corey McKrill, Daniel Bachhuber, David Herrera, Dominik Schilling (ocean90), Ella Van Dorpe, Eric Daams, Fernando Claussen, Garrett Hyder, Gary Pendergast, Heather Burns, Helen Hou-Sandi, herregroen, Ian Dunn, ibelanger, imath, Jb Audras, Jeffrey Paul, Jeremy Felt, Jesper V Nielsen, JJJ, Joe McGill, John Blackbourn, Jonathan Desrosiers, Josepha, jrf, Kåre Mulvad Steffensen, Laken Hafner, laurelfulford, lbenicio, macbookandrew, Marius L. J., Mel Choyce, Michael Nelson, Mike Jolley, Pascal Casier, pbrocks, postphotos, Prashant Baldha, PressTigers, programmin, Robin Cornett, Sergey Biryukov, Stefano Lissa, Stephane Daury (stephdau), Subrata Sarkar, Tammie Lister, teddytime, thomasplevy, Timothy Jacobs, Tobias Zimpel, Tom J Nowell, Tor-Bjorn Fjellner, Towhidul Islam, voneff, William Earnhardt, and Xenos (xkon) Konstantinos.
\n\nThe WordPress 15th Anniversary is Coming
\n\nWork has Started on a Gutenberg Migration Guide
\n\nTheme Review Team Launches Trusted Authors Program
\n\n
\n\nFurther Reading:
\n\n\n
\n\n
Party time!
\n\n\n
\n\nSpecial Swag
\n\nShare the fun
\n\nWhat is GDPR?
\n\nMake WordPress GDPR Compliance Team
\n\n\n
\n\nDon’t we already have a privacy policy?
\n\n\n
\n\nHow can you get involved?
\n\n\n
\n\nlocalhost as same host by default.\n
\n\nIn Progress
\n\n\n
\n\nJuly
\n\n\n
\n\nAugust and beyond
\n\n\n
\n\nWP REST API Currently Poses Complicated Hurdles for App Developers
\nwpautop()). The application is not yet ready for real, practical use but would require even more API calls to do things like get ahold of categories and tags or add the ability to create new ones.\n
\n\n
\nMy First Client
\nMy First Core Experience
\nMy first WordCamp
\nThe Pocitos neighborhood of Montevideo, Uruguay. Skyline from the shore -photo credit: Rimbaldine\n
\n\nAnother Successful WordCamp Europe
\n\nUpdated Roadmap for the New WordPress Content Editor
\n\nWordCamp Incubator Cities Announced
\n\n
\n\nFurther Reading:
\n\n\n
\n\n\n
\n\nLinks
\n\n
\nSponsor: Jilt
\nStories Discussed:
\n
\nAn Important Announcement About the Future of StudioPress
\nWP Engine, a managed WordPress platform, raises $250M from Silver Lake
\nhttps://twitter.com/bgardner/status/1012011823279824901
\nAutomateWoo joins Prospress
\nAutomateWoo joins Prospress to Further eCommerce Automation on WooCommerce
\nTide Beta 1 ReleasedWPWeekly Meta:
\n
\n\n\n
\n Revolution Church Theme \n\n\n
JavaScript for WordPress conference\n

\n\n
mcsv.net and then select all, report as spam, and unsubscribe. Gmail doesn’t deal well when the unsubscribe list is taller than your screen, so you may need to hit command + - a few times to make it all fit. Also according to this post, “you can also get in touch with our compliance team directly at compliance@mailchimp.com with the email address you would like to remove from all lists and they will be happy to further assist you there as well.” I will try that as well.\n\n
photo credit: WordCamp Europe Photography Team\n
\n
\n\n
\n\n
\nDevelopers and Agencies Double Down on Gutenberg Preparation, “Playing for Keeps”
\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jun 2018 05:20:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: WPWeekly Episode 321 – Recap of WordCamp EU 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=81758&preview=true&preview_id=81758\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/wpweekly-episode-321-recap-of-wordcamp-eu-2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1901:\"
Told here about #WCEU
– what is that, she asked.
– the European Conference for #WordPress, I said.
Her eyes sparkling, she grabbed the wheel firm, looked in the rear view mirror at me and said,Stories Discussed:
\n
\nWordCamp Europe 2018 Contributor Day Posts Record Turnout Amid Wi-Fi Outage
\nMullenweg announced Gutenberg Roadmap
\nWP Rig – A WordPress Starter Theme and Build Process in OneWPWeekly Meta:
\n
\n
Almost exactly two years ago I was looking at Google Analytics Realtime and someone from St. Lucia popped up. St. Lucia isn’t a very big place. In the map on the right you can see a little pink dot in the center. That’s the size of St. Lucia compared to Kansas. The entire country has fewer people than my city. I wondered who that was, so I tweeted out to the world, asking if anyone knew who that might be. A friend from Themeisle said “Our man Uriahs lives there, maybe it’s him!”\n\n
\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Jun 2018 22:24:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.0.8 of the Akismet WordPress Plugin Is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2018/06/19/version-4-0-8-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:784:\"
.
.
.
.\n
\nrel=”nofollow noopener” to the comment form privacy notice to improve SEO and security.What is ScoutDocs? ScoutDocs is a WordPress plugin that adds simple file-sharing to your WordPress site.
\n
\n\n
\n\n\n
\n\n\n
\n\n\n
\n\n


\n
\n\nLinks
\n\n
\nSponsor: Yoast
\nHow Will Theme Building Change with Gutenberg?
\nHow Will Gutenberg Handle Customization?
\nStories Discussed:
\n
\nTen WordPress Plugins By Multidots For WooCommerce Identified As Vulnerable And Dangerous
\nPlugin Detective Wins WordCamp Orange County’s 2018 Plugin-a-PaloozaWPWeekly Meta:
\n
\n
\n\n
\n Creating a new case in Plugin Detective\n\n\n
>
“Basically, if an author opts-in, we can help the end-user file a support ticket right there in Plugin Detective after we’ve identified the problem,” he said. “The support team gets a helpful bug report with notes from the customer, along with system information, other installed plugins, active theme, etc.”\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Jun 2018 23:35:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: WordCamp Europe Introduces Official Mobile App, New Tech for On-site Badge Printing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81001\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/wordcamp-europe-introduces-official-mobile-app-new-tech-for-on-site-badge-printing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4132:\"\n\n
\n\n
\n\n
New Tech for Badges Generates a Barcode for Sponsors to Scan
\n\nWhat is ScoutDocs? ScoutDocs is a WordPress plugin that adds simple file-sharing to your WordPress site.
\nRow component with a clickable icon. So I let the component accept an icon and onClickIcon property. I just passed a Font Awesome icon name in, and a function I wanted to run when clicked. It worked great.otherIcon and onClickOtherIcon. Instead, what I should have done was let the component accept beforeRow which could be anything… like an array of <Icon> components or a single one or even other components altogether.\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Jun 2018 14:36:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Customisation options for the Akismet front-end privacy notice\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1999\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2018/06/07/customisation-options-for-the-akismet-front-end-privacy-notice/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3606:\"WordPress option
\nakismet_comment_form_privacy_notice option, which needs to be set to either display or hide.display or hide, the front-end notice will match the choice, and the in-admin notice will disappear.Filters
\nclass.akismet.php, there is a new Akismet::display_comment_form_privacy_notice() method, in which you can find the following filters to extend.\n
\nakismet_comment_form_privacy_notice:
\nOverrides the returned value of the akismet_comment_form_privacy_notice option. This value can be display, or hide, and controls the display of the front-end privacy notice under comment forms.akismet_comment_form_privacy_notice_markup:
\nLets you customise the text and markup of the actual notice, which defaults to \'<p class=\"akismet_comment_form_privacy_notice\">\' . sprintf( __( \'This site uses Akismet to reduce spam. <a href=\"%s\" target=\"_blank\">Learn how your comment data is processed</a>.\', \'akismet\' ), \'https://akismet.com/privacy/\' ) . \'</p>\'. Note that if you choose to modify the markup, something needs to eventually point your users to https://akismet.com/privacy/, which will always display, or redirect to, our most up-to-date privacy related documentation.CSS
\n<p class=\"akismet_comment_form_privacy_notice\"></p> tag, which you can extend via stylesheets and Javascript.WP Multisite or multiple WP installs
\nakismet_comment_form_privacy_notice option is set, and if it is not, set it for the current blog: update_option( \'akismet_comment_form_privacy_notice\', $state ); where $state is either display or hide.Stories Discussed:
\n
\nGutenberg 3.0.0 Released, 30th Release
\nSimple:Press Forum Plugin Is Up for Adoption
\nWordCamp for iOS Renamed to WP Camps, More Events Added
\nSustainability + WordPress = SustyWP
\nImproving WordPress with Static AnalysisWPWeekly Meta:
\n
\n\n Simple:Press Forum in Action\n\n\n
\n
\n\n\n WordCamp Kent, OH in WP Camps\n\n\n

Talking about WordPress
\n
\nWhile I was working on various freelancing WordPress projects, I was also doing content writing passionately. Now I am writing for several publication and news websites. Mostly I write about mind-boggling science and futuristic technology. Some of my anonymously written articles are featured on popular newsletter such as Slashdot.This went well:
\nSo no WordPress?
\nLife nowadays
\nWhat is ScoutDocs? ScoutDocs is a WordPress plugin that adds simple file-sharing to your WordPress site. You can upload files (which are stored securely in the cloud and served over HTTPS via a global CDN), and share them with individuals or groups of individuals. Email notifications are also handled by the ScoutDocs service, getting around the issue of reliable email delivery on a shared host. You can require that recipients accept or decline the files you’ve shared, e.g. so you can see which of your employees has seen the new employee handbook. Instead of files living as email attachments (if they even fit) or off on some third-party site, people can access them on your site.
\n
\n
\n
\n\n
\n\nLocal Communities Celebrate the 15th Anniversary of WordPress
\n\nPrivacy Tools added to WordPress core
\n\nUpdates to the WordPress.org Privacy Policy
\n\n
\n\nFurther Reading:
\n\n\n
\n\nHi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\nThe XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2018-06-11 07:30:53','2018-06-11 07:30:53','',0,'http://localhost/?page_id=2',0,'page','',0),(3,1,'2018-06-11 07:30:53','2018-06-11 07:30:53','Who we are
What personal data we collect and why we collect it
Comments
Media
Contact forms
Cookies
Embedded content from other websites
Analytics
Who we share your data with
How long we retain your data
What rights you have over your data
Where we send your data
Your contact information
Additional information
How we protect your data
What data breach procedures we have in place
What third parties we receive data from
What automated decision making and/or profiling we do with user data
Industry regulatory disclosure requirements
','Privacy Policy','','draft','closed','open','','privacy-policy','','','2018-06-11 07:30:53','2018-06-11 07:30:53','',0,'http://localhost/?page_id=3',0,'page','',0),(5,1,'2018-06-11 07:49:20','2018-06-11 07:49:20','','Shop','','publish','closed','closed','','shop','','','2018-06-11 07:49:20','2018-06-11 07:49:20','',0,'http://localhost/shop/',0,'page','',0),(6,1,'2018-06-11 07:49:20','2018-06-11 07:49:20','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2018-06-11 07:49:20','2018-06-11 07:49:20','',0,'http://localhost/cart/',0,'page','',0),(7,1,'2018-06-11 07:49:20','2018-06-11 07:49:20','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout','','','2018-06-11 07:49:20','2018-06-11 07:49:20','',0,'http://localhost/checkout/',0,'page','',0),(8,1,'2018-06-11 07:49:20','2018-06-11 07:49:20','[woocommerce_my_account]','My account','','publish','closed','closed','','my-account','','','2018-06-11 07:49:20','2018-06-11 07:49:20','',0,'http://localhost/my-account/',0,'page','',0),(73,1,'2018-06-11 08:38:00','2018-06-11 08:38:00','','First Product','','publish','open','closed','','hamo','','','2018-06-29 12:21:58','2018-06-29 12:21:58','',0,'http://localhost/?post_type=product&p=73',0,'product','',0),(375,1,'2018-06-27 23:27:51','2018-06-27 23:27:51','[gravityflow page=\"inbox\"]','Workflow Inbox','Workflow Inbox','publish','closed','closed','','workflow-inbox','','','2018-06-27 23:27:51','2018-06-27 23:27:51','',0,'http://localhost/workflow-inbox/',0,'page','',0),(376,1,'2018-06-27 23:27:51','2018-06-27 23:27:51','[gravityflow page=\"status\"]','Workflow Status','Workflow Status','publish','closed','closed','','workflow-status','','','2018-06-27 23:27:51','2018-06-27 23:27:51','',0,'http://localhost/workflow-status/',0,'page','',0),(377,1,'2018-06-27 23:27:51','2018-06-27 23:27:51','[gravityflow page=\"submit\"]','Submit a Workflow Form','Submit a Workflow Form','publish','closed','closed','','submit-a-workflow-form','','','2018-06-27 23:27:51','2018-06-27 23:27:51','',0,'http://localhost/submit-a-workflow-form/',0,'page','',0),(378,1,'2018-06-27 23:28:58','0000-00-00 00:00:00','','Start workflow','','draft','closed','closed','','','','','2018-06-27 23:28:58','2018-06-27 23:28:58','',0,'http://localhost/?page_id=378',0,'page','',0),(379,1,'2018-06-27 23:32:54','2018-06-27 23:32:54','[gravityform id=\"1\" title=\"false\" description=\"false\"]','Start workflow process','','publish','closed','closed','','start-workflow-process','','','2018-06-27 23:33:30','2018-06-27 23:33:30','',0,'http://localhost/?page_id=379',0,'page','',0),(380,1,'2018-06-27 23:32:54','2018-06-27 23:32:54','[gravityform id=\"1\" title=\"true\" description=\"true\"]','Start workflow process','','inherit','closed','closed','','379-revision-v1','','','2018-06-27 23:32:54','2018-06-27 23:32:54','',379,'http://localhost/2018/06/27/379-revision-v1/',0,'revision','',0),(381,1,'2018-06-27 23:33:01','2018-06-27 23:33:01','Preview Changes (opens in a new window)[gravityform id=\"1\" title=\"true\" description=\"true\"]','Start workflow process','','inherit','closed','closed','','379-autosave-v1','','','2018-06-27 23:33:01','2018-06-27 23:33:01','',379,'http://localhost/2018/06/27/379-autosave-v1/',0,'revision','',0),(382,1,'2018-06-27 23:33:30','2018-06-27 23:33:30','[gravityform id=\"1\" title=\"false\" description=\"false\"]','Start workflow process','','inherit','closed','closed','','379-revision-v1','','','2018-06-27 23:33:30','2018-06-27 23:33:30','',379,'http://localhost/2018/06/27/379-revision-v1/',0,'revision','',0),(383,1,'2018-06-28 00:04:50','2018-06-28 00:04:50','[gravityform id=\"7\" title=\"false\" description=\"false\"]','Enter installation info','','publish','closed','closed','','enter-installation-info','','','2018-06-28 00:05:13','2018-06-28 00:05:13','',0,'http://localhost/?page_id=383',0,'page','',0),(384,1,'2018-06-28 00:04:50','2018-06-28 00:04:50','[gravityform id=\"12\" title=\"true\" description=\"true\"]','Enter installation info','','inherit','closed','closed','','383-revision-v1','','','2018-06-28 00:04:50','2018-06-28 00:04:50','',383,'http://localhost/2018/06/28/383-revision-v1/',0,'revision','',0),(385,1,'2018-06-28 00:05:13','2018-06-28 00:05:13','[gravityform id=\"7\" title=\"false\" description=\"false\"]','Enter installation info','','inherit','closed','closed','','383-revision-v1','','','2018-06-28 00:05:13','2018-06-28 00:05:13','',383,'http://localhost/2018/06/28/383-revision-v1/',0,'revision','',0),(386,1,'2018-06-28 00:05:40','2018-06-28 00:05:40','[gravityform id=\"5\" title=\"false\" description=\"false\"]','Enter configuration info','','publish','closed','closed','','enter-configuration-info','','','2018-06-28 00:05:40','2018-06-28 00:05:40','',0,'http://localhost/?page_id=386',0,'page','',0),(387,1,'2018-06-28 00:05:40','2018-06-28 00:05:40','[gravityform id=\"5\" title=\"false\" description=\"false\"]','Enter configuration info','','inherit','closed','closed','','386-revision-v1','','','2018-06-28 00:05:40','2018-06-28 00:05:40','',386,'http://localhost/2018/06/28/386-revision-v1/',0,'revision','',0),(388,1,'2018-06-28 00:06:07','2018-06-28 00:06:07','[gravityform id=\"6\" title=\"false\" description=\"false\"]','Upload contract','','publish','closed','closed','','upload-contract','','','2018-06-28 00:51:05','2018-06-28 00:51:05','',0,'http://localhost/?page_id=388',0,'page','',0),(389,1,'2018-06-28 00:06:07','2018-06-28 00:06:07','[gravityform id=\"5\" title=\"false\" description=\"false\"]','Upload contract','','inherit','closed','closed','','388-revision-v1','','','2018-06-28 00:06:07','2018-06-28 00:06:07','',388,'http://localhost/2018/06/28/388-revision-v1/',0,'revision','',0),(390,1,'2018-06-28 00:51:05','2018-06-28 00:51:05','[gravityform id=\"6\" title=\"false\" description=\"false\"]','Upload contract','','inherit','closed','closed','','388-revision-v1','','','2018-06-28 00:51:05','2018-06-28 00:51:05','',388,'http://localhost/2018/06/28/388-revision-v1/',0,'revision','',0),(404,1,'2018-06-29 09:32:46','2018-06-29 09:32:46','','First Product','','inherit','closed','closed','','73-autosave-v1','','','2018-06-29 09:32:46','2018-06-29 09:32:46','',73,'http://localhost/2018/06/29/73-autosave-v1/',0,'revision','',0),(405,1,'2018-06-29 09:33:03','2018-06-29 09:33:03','','2011-06-20 11.58.44','','inherit','open','closed','','2011-06-20-11-58-44','','','2018-06-29 09:33:03','2018-06-29 09:33:03','',73,'http://localhost/wp-content/uploads/2018/06/2011-06-20-11.58.44.jpg',0,'attachment','image/jpeg',0),(406,1,'2018-06-29 09:37:23','2018-06-29 09:37:23','','Second product','','publish','open','closed','','second-product','','','2018-06-29 12:21:24','2018-06-29 12:21:24','',0,'http://localhost/?post_type=product&p=406',0,'product','',0),(407,1,'2018-06-29 09:38:18','2018-06-29 09:38:18','','Image018','','inherit','open','closed','','image018','','','2018-06-29 09:38:18','2018-06-29 09:38:18','',406,'http://localhost/wp-content/uploads/2018/06/Image018.jpg',0,'attachment','image/jpeg',0),(408,1,'2018-06-29 09:41:51','2018-06-29 09:41:51','','Product BUNDLE','','publish','open','closed','','product-bundle','','','2018-06-29 12:20:00','2018-06-29 12:20:00','',0,'http://localhost/?post_type=product&p=408',0,'product','',0),(409,1,'2018-06-29 12:19:41','2018-06-29 12:19:41','','products','','inherit','open','closed','','products','','','2018-06-29 12:19:41','2018-06-29 12:19:41','',408,'http://localhost/wp-content/uploads/2018/06/products.png',0,'attachment','image/png',0),(414,1,'2018-07-08 19:39:24','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-07-08 19:39:24','0000-00-00 00:00:00','',0,'http://localhost/?p=414',0,'post','',0),(418,1,'2018-07-08 23:13:58','2018-07-08 23:13:58','','Order – July 8, 2018 @ 11:13 PM','','wc-processing','open','closed','order_5b429ab6a3ecd','order-jul-08-2018-1113-pm','','','2018-07-08 23:13:58','2018-07-08 23:13:58','',0,'http://localhost/?post_type=shop_order&p=418',0,'shop_order','',1),(419,1,'2018-07-08 23:14:41','2018-07-08 23:14:41','','Order – July 8, 2018 @ 11:14 PM','','wc-processing','open','closed','order_5b429ae1986ea','order-jul-08-2018-1114-pm','','','2018-07-08 23:14:41','2018-07-08 23:14:41','',0,'http://localhost/?post_type=shop_order&p=419',0,'shop_order','',1),(420,1,'2018-07-08 23:15:41','2018-07-08 23:15:41','','Order – July 8, 2018 @ 11:15 PM','','wc-processing','open','closed','order_5b429b1db6180','order-jul-08-2018-1115-pm','','','2018-07-08 23:15:41','2018-07-08 23:15:41','',0,'http://localhost/?post_type=shop_order&p=420',0,'shop_order','',1),(421,1,'2018-07-09 00:35:01','2018-07-09 00:35:01','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2018-07-09 00:35:01','2018-07-09 00:35:01','',1,'http://localhost/2018/07/09/1-revision-v1/',0,'revision','',0),(422,1,'2018-07-09 09:35:51','2018-07-09 09:35:51','','Organization Address','','publish','closed','closed','','organization-address','','','2018-07-09 09:35:51','2018-07-09 09:35:51','',0,'http://localhost/wp-types-term-group/organization-address/',0,'wp-types-term-group','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_queue`
--
DROP TABLE IF EXISTS `wp_queue`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_queue` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`job` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`attempts` tinyint(1) NOT NULL DEFAULT '0',
`locked` tinyint(1) NOT NULL DEFAULT '0',
`locked_at` datetime DEFAULT NULL,
`available_at` datetime NOT NULL,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_queue`
--
LOCK TABLES `wp_queue` WRITE;
/*!40000 ALTER TABLE `wp_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_queue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(2,28,0),(5,24,0),(6,25,0),(7,27,0),(73,2,0),(73,15,0),(406,2,0),(406,15,0),(408,3,0),(408,15,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_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=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'product_type','',0,2),(3,3,'product_type','',0,1),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,3),(16,16,'product_cat','A short category description',0,0),(17,17,'product_cat','A short category description',0,0),(18,18,'product_cat','A short category description',0,0),(24,24,'user-organization','Top level',0,1),(25,25,'user-organization','Department of Coor Nordic',24,1),(27,27,'user-organization','Subdepartment of Coor Nordic',25,1),(28,28,'user-organization','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,16,'thumbnail_id','22'),(2,16,'product_count_product_cat','0'),(3,17,'thumbnail_id','24'),(4,17,'product_count_product_cat','0'),(5,18,'thumbnail_id','23'),(6,18,'product_count_product_cat','0'),(7,15,'product_count_product_cat','3'),(8,24,'group_id','2'),(9,25,'group_id','3'),(11,27,'group_id','5'),(12,28,'group_id','6'),(13,27,'wpcf-address','Address'),(14,27,'wpcf-street-address','Street Address'),(15,27,'wpcf-address-line-2','Address Line 2'),(16,27,'wpcf-state-province-region','State'),(17,27,'wpcf-zip-postal-code','33333'),(18,27,'wpcf-country','sweeden');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'Accessories','accessories',0),(17,'Hoodies','hoodies',0),(18,'Tshirts','tshirts',0),(24,'Coor Nordic','coor-nordic',0),(25,'Coor SE','coor-se',0),(27,'Coor Kista','coor-kista',0),(28,'Broker Organization','broker-organization',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_toolset_post_guid_id`
--
DROP TABLE IF EXISTS `wp_toolset_post_guid_id`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_toolset_post_guid_id` (
`guid` varchar(190) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_id` bigint(20) NOT NULL,
UNIQUE KEY `post_id` (`post_id`),
KEY `guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_toolset_post_guid_id`
--
LOCK TABLES `wp_toolset_post_guid_id` WRITE;
/*!40000 ALTER TABLE `wp_toolset_post_guid_id` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_toolset_post_guid_id` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=315 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','worpwooc'),(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,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy,theme_editor_notice'),(15,1,'show_welcome_panel','1'),(17,1,'wp_dashboard_quick_press_last_post_id','414'),(18,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(19,1,'jetpack_tracks_anon_id','jetpack:dJtly7NxwT0oEWoZgmi5zmnL'),(20,1,'wc_last_active','1531094400'),(21,2,'nickname','broker'),(22,2,'first_name','br'),(23,2,'last_name','ok'),(24,2,'description',''),(25,2,'rich_editing','true'),(26,2,'syntax_highlighting','true'),(27,2,'comment_shortcuts','false'),(28,2,'admin_color','fresh'),(29,2,'use_ssl','0'),(30,2,'show_admin_bar_front','true'),(31,2,'locale',''),(32,2,'wp_capabilities','a:1:{s:6:\"broker\";b:1;}'),(33,2,'wp_user_level','0'),(34,2,'dismissed_wp_pointers','wp496_privacy'),(35,3,'nickname','Multi User'),(36,3,'first_name','Multi'),(37,3,'last_name','User'),(38,3,'description',''),(39,3,'rich_editing','true'),(40,3,'syntax_highlighting','true'),(41,3,'comment_shortcuts','false'),(42,3,'admin_color','fresh'),(43,3,'use_ssl','0'),(44,3,'show_admin_bar_front','true'),(45,3,'locale',''),(46,3,'wp_capabilities','a:2:{s:15:\"commercial_lead\";b:1;s:8:\"supplier\";b:1;}'),(47,3,'wp_user_level','0'),(48,3,'dismissed_wp_pointers','wp496_privacy'),(49,3,'billing_first_name','Multi'),(50,3,'billing_last_name','User'),(51,3,'billing_company',''),(52,3,'billing_address_1',''),(53,3,'billing_address_2',''),(54,3,'billing_city',''),(55,3,'billing_postcode',''),(56,3,'billing_country',''),(57,3,'billing_state',''),(58,3,'billing_phone',''),(59,3,'billing_email','multi@dfkdf.com'),(60,3,'shipping_first_name',''),(61,3,'shipping_last_name',''),(62,3,'shipping_company',''),(63,3,'shipping_address_1',''),(64,3,'shipping_address_2',''),(65,3,'shipping_city',''),(66,3,'shipping_postcode',''),(67,3,'shipping_country',''),(68,3,'shipping_state',''),(69,3,'last_update','1528971733'),(71,3,'wc_last_active','1530144000'),(72,3,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(73,1,'_order_count','0'),(74,1,'_money_spent','0'),(75,2,'_order_count','0'),(76,2,'_money_spent','0'),(77,3,'_order_count','0'),(78,3,'_money_spent','0'),(79,1,'wp_user-settings','libraryContent=browse'),(80,1,'wp_user-settings-time','1530140648'),(81,1,'session_tokens','a:3:{s:64:\"7fd383f5f4ee053716f43b1e048d29adf01ac2c9910f06a19e3c87ac9615ce7c\";a:4:{s:10:\"expiration\";i:1531251561;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:5:\"login\";i:1531078761;}s:64:\"36631a4d17bd5cb895d1371bed3e1d01bd57a435fbaef6ea5575b6b9ef4a0741\";a:4:{s:10:\"expiration\";i:1531253142;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:5:\"login\";i:1531080342;}s:64:\"3e7589220616531835b04e84e0531b73a91893a1c21049b912091d388fcd1e26\";a:4:{s:10:\"expiration\";i:1531253146;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:5:\"login\";i:1531080346;}}'),(82,1,'gform_recent_forms','a:6:{i:0;s:1:\"5\";i:1;s:1:\"6\";i:2;s:1:\"7\";i:3;s:1:\"2\";i:4;s:1:\"1\";i:5;s:1:\"8\";}'),(83,3,'session_tokens','a:3:{s:64:\"e7bc269d5e6c5bcd01e7677ec7f6a573248889f07e40fc1c611d0ba4325802dc\";a:4:{s:10:\"expiration\";i:1530316681;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:5:\"login\";i:1530143881;}s:64:\"af23050f54eb3c28040d0f494a0f6c5e728db01e913e6b6302d583b2f4c33929\";a:4:{s:10:\"expiration\";i:1530316685;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:5:\"login\";i:1530143885;}s:64:\"74d7467be92698e05da4da5d49a627767cdf9d68bd624ae22f5b5ceaa5eb02fe\";a:4:{s:10:\"expiration\";i:1530322931;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:5:\"login\";i:1530150131;}}'),(84,2,'session_tokens','a:1:{s:64:\"6f76d4073d342d03f9ced47a14ae35ec2d0d12fc62f28bd81677f617718e3d1c\";a:4:{s:10:\"expiration\";i:1530318928;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:5:\"login\";i:1530146128;}}'),(85,2,'wc_last_active','1530144000'),(86,2,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(87,1,'vaa-view-admin-as','a:1:{s:5:\"views\";a:1:{s:43:\"WJYgXm1HPol64IkvJ2AHTRMSvaX3RF7vvUJAH4z3EQ7\";a:2:{s:4:\"view\";a:1:{s:4:\"role\";s:13:\"administrator\";}s:6:\"expire\";i:1531191138;}}}'),(88,4,'nickname','customer'),(89,4,'first_name','Customer'),(90,4,'last_name','Customer'),(91,4,'description',''),(92,4,'rich_editing','true'),(93,4,'syntax_highlighting','true'),(94,4,'comment_shortcuts','false'),(95,4,'admin_color','fresh'),(96,4,'use_ssl','0'),(97,4,'show_admin_bar_front','true'),(98,4,'locale',''),(99,4,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(100,4,'wp_user_level','0'),(101,4,'dismissed_wp_pointers','wp496_privacy'),(102,4,'session_tokens','a:2:{s:64:\"625ecd6c6b9e17d0723631cfb464b9a70f880dc0773f055fc4e71b1357e5ed09\";a:4:{s:10:\"expiration\";i:1530323099;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:5:\"login\";i:1530150299;}s:64:\"fb19a415147895f0ba0f656863958297a1827ba0a190232447aad7b947e9b05c\";a:4:{s:10:\"expiration\";i:1530323102;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:5:\"login\";i:1530150302;}}'),(103,4,'wc_last_active','1530144000'),(104,4,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(105,1,'dismissed_update_notice','1'),(106,1,'dismissed_no_secure_connection_notice','1'),(107,5,'nickname','coor_nordic'),(108,5,'first_name','User'),(109,5,'last_name','Coor Nordic'),(110,5,'description',''),(111,5,'rich_editing','true'),(112,5,'syntax_highlighting','true'),(113,5,'comment_shortcuts','false'),(114,5,'admin_color','fresh'),(115,5,'use_ssl','0'),(116,5,'show_admin_bar_front','true'),(117,5,'locale',''),(118,5,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(119,5,'wp_user_level','0'),(120,5,'dismissed_wp_pointers','wp496_privacy'),(121,6,'nickname','coor_se'),(122,6,'first_name','User'),(123,6,'last_name','Coor SE'),(124,6,'description',''),(125,6,'rich_editing','true'),(126,6,'syntax_highlighting','true'),(127,6,'comment_shortcuts','false'),(128,6,'admin_color','fresh'),(129,6,'use_ssl','0'),(130,6,'show_admin_bar_front','true'),(131,6,'locale',''),(132,6,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(133,6,'wp_user_level','0'),(134,6,'dismissed_wp_pointers','wp496_privacy'),(135,7,'nickname','coor_kista'),(136,7,'first_name','User'),(137,7,'last_name','Coor Kista'),(138,7,'description',''),(139,7,'rich_editing','true'),(140,7,'syntax_highlighting','true'),(141,7,'comment_shortcuts','false'),(142,7,'admin_color','fresh'),(143,7,'use_ssl','0'),(144,7,'show_admin_bar_front','true'),(145,7,'locale',''),(146,7,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(147,7,'wp_user_level','0'),(148,7,'dismissed_wp_pointers','wp496_privacy'),(149,7,'billing_first_name','User'),(150,7,'billing_last_name','Coor Kista'),(151,7,'billing_company','Coor Kista'),(152,7,'billing_address_1','Coor Kista'),(153,7,'billing_address_2','Coor Kista'),(154,7,'billing_city','Coor Kista'),(155,7,'billing_postcode','COORKISTA'),(156,7,'billing_country','BA'),(157,7,'billing_state','Coor Kista'),(158,7,'billing_phone','5555555555555'),(159,7,'billing_email','user@coorkista.com'),(160,7,'shipping_first_name','User'),(161,7,'shipping_last_name','Coor Kista'),(162,7,'shipping_company','Coor Kista'),(163,7,'shipping_address_1','Coor Kista'),(164,7,'shipping_address_2','Coor Kista'),(165,7,'shipping_city','Coor Kista'),(166,7,'shipping_postcode','COORKISTA'),(167,7,'shipping_country','BA'),(168,7,'shipping_state','Coor Kista'),(169,7,'last_update','1531091638'),(170,5,'billing_first_name','User'),(171,5,'billing_last_name','Coor Nordic'),(172,5,'billing_company','Coor Nordic'),(173,5,'billing_address_1','oor Nordic'),(174,5,'billing_address_2','oor Nordic'),(175,5,'billing_city','oor Nordic'),(176,5,'billing_postcode','OORNORDIC'),(177,5,'billing_country','BA'),(178,5,'billing_state','oor Nordic'),(179,5,'billing_phone','2222222222'),(180,5,'billing_email','user@coornordic.com'),(181,5,'shipping_first_name','User'),(182,5,'shipping_last_name','Coor Nordic'),(183,5,'shipping_company','Coor Nordic'),(184,5,'shipping_address_1','oor Nordic'),(185,5,'shipping_address_2','oor Nordic'),(186,5,'shipping_city','oor Nordic'),(187,5,'shipping_postcode','OORNORDIC'),(188,5,'shipping_country','BA'),(189,5,'shipping_state','oor Nordic'),(190,5,'last_update','1531091741'),(191,6,'billing_first_name','User'),(192,6,'billing_last_name','Coor SE'),(193,6,'billing_company','Coor SE'),(194,6,'billing_address_1','Coor SE'),(195,6,'billing_address_2','Coor SE'),(196,6,'billing_city','Coor SE'),(197,6,'billing_postcode','COORSE'),(198,6,'billing_country','BA'),(199,6,'billing_state','Coor SE'),(200,6,'billing_phone','3333333333'),(201,6,'billing_email','user@coorse.com'),(202,6,'shipping_first_name','User'),(203,6,'shipping_last_name','Coor SE'),(204,6,'shipping_company','Coor SE'),(205,6,'shipping_address_1','Coor SE'),(206,6,'shipping_address_2','Coor SE'),(207,6,'shipping_city','Coor SE'),(208,6,'shipping_postcode','COORSE'),(209,6,'shipping_country','BA'),(210,6,'shipping_state','Coor SE'),(211,6,'last_update','1531091681'),(213,5,'wc_last_active','1531008000'),(219,6,'wc_last_active','1531008000'),(225,7,'wc_last_active','1531094400'),(230,4,'organization_id','22'),(231,4,'billing_first_name','Customer'),(232,4,'billing_last_name','Customer'),(233,4,'billing_company',''),(234,4,'billing_address_1',''),(235,4,'billing_address_2',''),(236,4,'billing_city',''),(237,4,'billing_postcode',''),(238,4,'billing_country',''),(239,4,'billing_state',''),(240,4,'billing_phone',''),(241,4,'billing_email','almira@saburly.com'),(242,4,'shipping_first_name',''),(243,4,'shipping_last_name',''),(244,4,'shipping_company',''),(245,4,'shipping_address_1',''),(246,4,'shipping_address_2',''),(247,4,'shipping_city',''),(248,4,'shipping_postcode',''),(249,4,'shipping_country',''),(250,4,'shipping_state',''),(251,7,'organization_id','22'),(258,6,'organization_id','25'),(263,7,'shipping_method','a:1:{i:0;s:15:\"free_shipping:2\";}'),(265,7,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(267,6,'shipping_method','a:1:{i:0;s:15:\"free_shipping:2\";}'),(269,6,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(270,5,'session_tokens','a:1:{s:64:\"5a27498e9172b57f19eadfebd5612eb5f32b25026946420a209cae4dd906ec59\";a:4:{s:10:\"expiration\";i:1531264524;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:61.0) Gecko/20100101 Firefox/61.0\";s:5:\"login\";i:1531091724;}}'),(271,5,'shipping_method','a:1:{i:0;s:15:\"free_shipping:2\";}'),(273,5,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(289,2,'organization_id','28'),(290,2,'billing_first_name','br'),(291,2,'billing_last_name','ok'),(292,2,'billing_company',''),(293,2,'billing_address_1',''),(294,2,'billing_address_2',''),(295,2,'billing_city',''),(296,2,'billing_postcode',''),(297,2,'billing_country',''),(298,2,'billing_state',''),(299,2,'billing_phone',''),(300,2,'billing_email','almira@saburly.com'),(301,2,'shipping_first_name',''),(302,2,'shipping_last_name',''),(303,2,'shipping_company',''),(304,2,'shipping_address_1',''),(305,2,'shipping_address_2',''),(306,2,'shipping_city',''),(307,2,'shipping_postcode',''),(308,2,'shipping_country',''),(309,2,'shipping_state',''),(310,1,'manageuserscolumnshidden','a:0:{}'),(311,1,'users_per_page','20'),(312,1,'closedpostboxes_','a:6:{i:0;s:37:\"types-custom-field-textfield-73263373\";i:1;s:38:\"types-custom-field-textfield-322313301\";i:2;s:38:\"types-custom-field-textfield-457364635\";i:3;s:39:\"types-custom-field-textfield-1799002072\";i:4;s:38:\"types-custom-field-textfield-131999760\";i:5;s:36:\"types-custom-field-select-1488607259\";}'),(313,1,'metaboxhidden_','a:0:{}'),(314,1,'manageedit-user-organizationcolumnshidden','a:5:{i:0;s:25:\"wpcf_field_street-address\";i:1;s:25:\"wpcf_field_address-line-2\";i:2;s:32:\"wpcf_field_state-province-region\";i:3;s:26:\"wpcf_field_zip-postal-code\";i:4;s:18:\"wpcf_field_country\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'worpwooc','$2y$12$hQKn8/3SzP/13nppZrynYODftARUNZq0ibtneTRZ2f78eKa.qItw6','worpwooc','almira@saburly.com','','2018-06-11 07:30:53','',0,'worpwooc'),(2,'broker','$2y$12$hQKn8/3SzP/13nppZrynYODftARUNZq0ibtneTRZ2f78eKa.qItw6','broker','almira@saburly.com','','2018-06-13 11:35:46','',0,'br ok'),(3,'Multi User','$2y$12$hQKn8/3SzP/13nppZrynYODftARUNZq0ibtneTRZ2f78eKa.qItw6','multi-user','almira@saburly.com','','2018-06-14 08:03:22','',0,'Multi User'),(4,'customer','$2y$12$hQKn8/3SzP/13nppZrynYODftARUNZq0ibtneTRZ2f78eKa.qItw6','customer','almira@saburly.com','http://localhost','2018-06-28 01:44:23','1530150265:$P$BJ5xNc9C1ZsOvRNijtHQuXneRBxOhM0',0,'Customer Customer'),(5,'coor_nordic','$2y$12$hQKn8/3SzP/13nppZrynYODftARUNZq0ibtneTRZ2f78eKa.qItw6','coor_nordic','user@coornordic.com','http://localhost','2018-07-08 20:54:43','',0,'User Coor Nordic'),(6,'coor_se','$2y$12$hQKn8/3SzP/13nppZrynYODftARUNZq0ibtneTRZ2f78eKa.qItw6','coor_se','user@coorse.com','http://localhost','2018-07-08 20:55:09','',0,'User Coor SE'),(7,'coor_kista','$2y$12$hQKn8/3SzP/13nppZrynYODftARUNZq0ibtneTRZ2f78eKa.qItw6','coor_kista','user@coorkista.com','http://localhost','2018-07-08 20:55:34','',0,'User Coor Kista');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_download_log`
--
DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_download_log` (
`download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`permission_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
PRIMARY KEY (`download_log_id`),
KEY `permission_id` (`permission_id`),
KEY `timestamp` (`timestamp`),
CONSTRAINT `fk_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wp_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_download_log`
--
LOCK TABLES `wp_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wp_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_webhooks`
--
DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_webhooks` (
`webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_id` bigint(20) unsigned NOT NULL,
`delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`api_version` smallint(4) NOT NULL,
`failure_count` smallint(10) NOT NULL DEFAULT '0',
`pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`webhook_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_webhooks`
--
LOCK TABLES `wp_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wp_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_api_keys`
--
DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
`key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL,
`description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`nonces` longtext COLLATE utf8mb4_unicode_520_ci,
`truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`last_access` datetime DEFAULT NULL,
PRIMARY KEY (`key_id`),
KEY `consumer_key` (`consumer_key`),
KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_api_keys`
--
LOCK TABLES `wp_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_api_keys` VALUES (4,1,'Tkey','read_write','c3c4268aa6b674de5e5d095b470927a7e25f6a94dd7b025d1e2019ff74b91de9','cs_1290deec8e07e3a4182cc88993734e77ff3f2cfa','a:5:{i:1530266021;s:11:\"oixNRGiSVCZ\";i:1530266467;s:11:\"IND3X26Jg6T\";i:1530266566;s:11:\"vezv9y97JK9\";i:1530266779;s:11:\"ieuxO2i9CKJ\";i:1530266848;s:11:\"O5nT7TUyinI\";}','a45dda4','2018-06-29 12:10:32'),(5,1,'Write key','read_write','d8fd9b7143bc9396aa638ddf1dc9da1fb1c526a4f1369a2891e7ab4165f7f6a6','cs_18bd03a0e6afd7d5c9e51e1d1c86032e425bd8d8','a:12:{i:1528798567;s:32:\"Mybcu9VTcIYZAbm6CiM3xDwTzkq2nzJl\";i:1528798585;s:32:\"fTAjzi33u17ESTIDOvouR31JUXrs8D04\";i:1528798589;s:32:\"czjKskxkWqfHuMCfgnlBf21BYnGG21Kt\";i:1528798616;s:32:\"xbxgfXDzPJsCFWmYWd3VOVa1ty0blTDV\";i:1528798815;s:32:\"4TtuVH1xC7DQamHIAKQARywWapilOKCI\";i:1528798823;s:32:\"xkB1Fsp4FPTawcjeMD9K2j7ZM14LjRex\";i:1528798838;s:32:\"ayvNSFnAz0iaPB8D4TmGC99abo02XF2V\";i:1528798844;s:32:\"8J9F2R1fw60nEMnvyQSFewXbgYKJxGLT\";i:1528798845;s:32:\"pGdBE50rNjO8iS8ttxfAw5dNUnj8bJMr\";i:1528798852;s:32:\"uMxWUCUHGYq8ZhtTB5WPOrERGnHNUHB7\";i:1528798917;s:32:\"zV61DT8BoVKPOzWAwErQ7l27xfKFme93\";i:1528799463;s:32:\"lFDBehUwM9D1cf0pzD5iEzP73dKDH1Rj\";}','6cc1287','2018-07-08 19:41:13'),(6,4,'Customer','read_write','a9a85ea71404e1e163d7ebfeb6d026d569c96e9e5c20bee1e490733d6e2d6160','cs_99dc6251a6d89fed28d2ca971965f4b32309751b',NULL,'2cea189','2018-07-08 23:54:00'),(7,5,'Read Coor Nordic','read','37b3474785036da4a7513faeae519339180a4faa52c55b1e38922e9885594619','cs_cce7da309f5b3b93c22a9984df24cb0966b6e3fd',NULL,'1de363d','2018-07-09 10:16:42'),(8,6,'Read Coor SE','read','61eac50011ffd54b01b925be1d8649aa4d37944aeced959a029464025d9100f9','cs_55aa56d59cdee89ddc1623d76c91f37574532718',NULL,'cd9c49f','2018-07-09 10:16:29'),(9,7,'Read Coor Kista','read','a5f95b8f1533ee7457d0c311aaa3cac7b3c501d17fd1b423549e0992b5afe2ca','cs_c078e2696e7fd20cabb114e15c2a7dfbbcf91d0b',NULL,'baa8c92','2018-07-09 10:16:13');
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--
DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
`attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`attribute_public` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`attribute_id`),
KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--
LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--
DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
`permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`download_id` varchar(36) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`product_id` bigint(20) unsigned NOT NULL,
`order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access_expires` datetime DEFAULT NULL,
`download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`permission_id`),
KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--
LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_log`
--
DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_log` (
`log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`level` smallint(4) NOT NULL,
`source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`context` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`log_id`),
KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_log`
--
LOCK TABLES `wp_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_itemmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_item_id` bigint(20) unsigned NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `order_item_id` (`order_item_id`),
KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB AUTO_INCREMENT=2158 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--
LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES (2086,234,'_product_id','73'),(2087,234,'_variation_id','0'),(2088,234,'_qty','1'),(2089,234,'_tax_class',''),(2090,234,'_line_subtotal','1'),(2091,234,'_line_subtotal_tax','0'),(2092,234,'_line_total','1'),(2093,234,'_line_tax','0'),(2094,234,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2095,235,'_product_id','406'),(2096,235,'_variation_id','0'),(2097,235,'_qty','1'),(2098,235,'_tax_class',''),(2099,235,'_line_subtotal','1'),(2100,235,'_line_subtotal_tax','0'),(2101,235,'_line_total','1'),(2102,235,'_line_tax','0'),(2103,235,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2104,236,'method_id','free_shipping'),(2105,236,'instance_id','2'),(2106,236,'cost','0.00'),(2107,236,'total_tax','0'),(2108,236,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(2109,236,'Items','First Product × 1, Second product × 1'),(2110,237,'_product_id','73'),(2111,237,'_variation_id','0'),(2112,237,'_qty','1'),(2113,237,'_tax_class',''),(2114,237,'_line_subtotal','1'),(2115,237,'_line_subtotal_tax','0'),(2116,237,'_line_total','1'),(2117,237,'_line_tax','0'),(2118,237,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2119,238,'_product_id','406'),(2120,238,'_variation_id','0'),(2121,238,'_qty','1'),(2122,238,'_tax_class',''),(2123,238,'_line_subtotal','1'),(2124,238,'_line_subtotal_tax','0'),(2125,238,'_line_total','1'),(2126,238,'_line_tax','0'),(2127,238,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2128,239,'method_id','free_shipping'),(2129,239,'instance_id','2'),(2130,239,'cost','0.00'),(2131,239,'total_tax','0'),(2132,239,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(2133,239,'Items','First Product × 1, Second product × 1'),(2134,240,'_product_id','73'),(2135,240,'_variation_id','0'),(2136,240,'_qty','1'),(2137,240,'_tax_class',''),(2138,240,'_line_subtotal','1'),(2139,240,'_line_subtotal_tax','0'),(2140,240,'_line_total','1'),(2141,240,'_line_tax','0'),(2142,240,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2143,241,'_product_id','406'),(2144,241,'_variation_id','0'),(2145,241,'_qty','2'),(2146,241,'_tax_class',''),(2147,241,'_line_subtotal','2'),(2148,241,'_line_subtotal_tax','0'),(2149,241,'_line_total','2'),(2150,241,'_line_tax','0'),(2151,241,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2152,242,'method_id','free_shipping'),(2153,242,'instance_id','2'),(2154,242,'cost','0.00'),(2155,242,'total_tax','0'),(2156,242,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(2157,242,'Items','First Product × 1, Second product × 2');
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_items`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
`order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`order_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`order_item_id`),
KEY `order_id` (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=243 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_order_items`
--
LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_order_items` VALUES (234,'First Product','line_item',418),(235,'Second product','line_item',418),(236,'Free shipping','shipping',418),(237,'First Product','line_item',419),(238,'Second product','line_item',419),(239,'Free shipping','shipping',419),(240,'First Product','line_item',420),(241,'Second product','line_item',420),(242,'Free shipping','shipping',420);
/*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`payment_token_id` bigint(20) unsigned NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `payment_token_id` (`payment_token_id`),
KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--
LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokens`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
`token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`token_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--
LOCK TABLES `wp_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_sessions`
--
DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
`session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`session_expiry` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`session_key`),
UNIQUE KEY `session_id` (`session_id`)
) ENGINE=InnoDB AUTO_INCREMENT=194 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_sessions`
--
LOCK TABLES `wp_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_sessions` VALUES (143,'1','a:8:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:706:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"BA\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:18:\"almira@saburly.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";s:22:\"mailchimp_landing_site\";s:40:\"http://localhost/wp-admin/admin-ajax.php\";}',1531251632),(170,'4','a:8:{s:22:\"mailchimp_landing_site\";s:39:\"https://localhost/wp-json/wiaas/v1/user\";s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:722:\"a:26:{s:2:\"id\";s:1:\"4\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"BA\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:8:\"Customer\";s:9:\"last_name\";s:8:\"Customer\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:18:\"almira@saburly.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1531259816),(193,'5','a:15:{s:8:\"customer\";s:928:\"a:26:{s:2:\"id\";s:1:\"5\";s:13:\"date_modified\";s:25:\"2018-07-08T23:15:41+00:00\";s:8:\"postcode\";s:9:\"OORNORDIC\";s:4:\"city\";s:10:\"oor Nordic\";s:9:\"address_1\";s:10:\"oor Nordic\";s:7:\"address\";s:10:\"oor Nordic\";s:9:\"address_2\";s:10:\"oor Nordic\";s:5:\"state\";s:10:\"oor Nordic\";s:7:\"country\";s:2:\"BA\";s:17:\"shipping_postcode\";s:9:\"OORNORDIC\";s:13:\"shipping_city\";s:10:\"oor Nordic\";s:18:\"shipping_address_1\";s:10:\"oor Nordic\";s:16:\"shipping_address\";s:10:\"oor Nordic\";s:18:\"shipping_address_2\";s:10:\"oor Nordic\";s:14:\"shipping_state\";s:10:\"oor Nordic\";s:16:\"shipping_country\";s:2:\"BA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:4:\"User\";s:9:\"last_name\";s:11:\"Coor Nordic\";s:7:\"company\";s:11:\"Coor Nordic\";s:5:\"phone\";s:10:\"2222222222\";s:5:\"email\";s:19:\"user@coornordic.com\";s:19:\"shipping_first_name\";s:4:\"User\";s:18:\"shipping_last_name\";s:11:\"Coor Nordic\";s:16:\"shipping_company\";s:11:\"Coor Nordic\";}\";s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:22:\"shipping_for_package_0\";s:423:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_ef48d458391b54ea88c98fa0c6be36fb\";s:5:\"rates\";a:1:{s:15:\"free_shipping:2\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:6:{s:2:\"id\";s:15:\"free_shipping:2\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:2;s:5:\"label\";s:13:\"Free shipping\";s:4:\"cost\";s:4:\"0.00\";s:5:\"taxes\";a:0:{}}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:49:\"First Product × 1, Second product × 2\";}}}}\";s:25:\"previous_shipping_methods\";s:43:\"a:1:{i:0;a:1:{i:0;s:15:\"free_shipping:2\";}}\";s:23:\"chosen_shipping_methods\";s:33:\"a:1:{i:0;s:15:\"free_shipping:2\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:3:\"cod\";s:22:\"order_awaiting_payment\";N;s:22:\"mailchimp_landing_site\";s:39:\"https://localhost/wp-json/wiaas/v1/user\";}',1531280317),(192,'6','a:8:{s:8:\"customer\";s:858:\"a:26:{s:2:\"id\";s:1:\"6\";s:13:\"date_modified\";s:25:\"2018-07-08T23:14:41+00:00\";s:8:\"postcode\";s:6:\"COORSE\";s:4:\"city\";s:7:\"Coor SE\";s:9:\"address_1\";s:7:\"Coor SE\";s:7:\"address\";s:7:\"Coor SE\";s:9:\"address_2\";s:7:\"Coor SE\";s:5:\"state\";s:7:\"Coor SE\";s:7:\"country\";s:2:\"BA\";s:17:\"shipping_postcode\";s:6:\"COORSE\";s:13:\"shipping_city\";s:7:\"Coor SE\";s:18:\"shipping_address_1\";s:7:\"Coor SE\";s:16:\"shipping_address\";s:7:\"Coor SE\";s:18:\"shipping_address_2\";s:7:\"Coor SE\";s:14:\"shipping_state\";s:7:\"Coor SE\";s:16:\"shipping_country\";s:2:\"BA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:4:\"User\";s:9:\"last_name\";s:7:\"Coor SE\";s:7:\"company\";s:7:\"Coor SE\";s:5:\"phone\";s:10:\"3333333333\";s:5:\"email\";s:15:\"user@coorse.com\";s:19:\"shipping_first_name\";s:4:\"User\";s:18:\"shipping_last_name\";s:7:\"Coor SE\";s:16:\"shipping_company\";s:7:\"Coor SE\";}\";s:22:\"mailchimp_landing_site\";s:39:\"https://localhost/wp-json/wiaas/v1/user\";s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";}',1531268433),(191,'7','a:8:{s:8:\"customer\";s:926:\"a:26:{s:2:\"id\";s:1:\"7\";s:13:\"date_modified\";s:25:\"2018-07-08T23:13:58+00:00\";s:8:\"postcode\";s:9:\"COORKISTA\";s:4:\"city\";s:10:\"Coor Kista\";s:9:\"address_1\";s:10:\"Coor Kista\";s:7:\"address\";s:10:\"Coor Kista\";s:9:\"address_2\";s:10:\"Coor Kista\";s:5:\"state\";s:10:\"Coor Kista\";s:7:\"country\";s:2:\"BA\";s:17:\"shipping_postcode\";s:9:\"COORKISTA\";s:13:\"shipping_city\";s:10:\"Coor Kista\";s:18:\"shipping_address_1\";s:10:\"Coor Kista\";s:16:\"shipping_address\";s:10:\"Coor Kista\";s:18:\"shipping_address_2\";s:10:\"Coor Kista\";s:14:\"shipping_state\";s:10:\"Coor Kista\";s:16:\"shipping_country\";s:2:\"BA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:4:\"User\";s:9:\"last_name\";s:10:\"Coor Kista\";s:7:\"company\";s:10:\"Coor Kista\";s:5:\"phone\";s:13:\"5555555555555\";s:5:\"email\";s:18:\"user@coorkista.com\";s:19:\"shipping_first_name\";s:4:\"User\";s:18:\"shipping_last_name\";s:10:\"Coor Kista\";s:16:\"shipping_company\";s:10:\"Coor Kista\";}\";s:22:\"mailchimp_landing_site\";s:39:\"https://localhost/wp-json/wiaas/v1/user\";s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";}',1531266857);
/*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
`location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`zone_id` bigint(20) unsigned NOT NULL,
`location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
PRIMARY KEY (`location_id`),
KEY `location_id` (`location_id`),
KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--
LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_shipping_zone_locations` VALUES (1,1,'US','country');
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
`zone_id` bigint(20) unsigned NOT NULL,
`instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`method_order` bigint(20) unsigned NOT NULL,
`is_enabled` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--
LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_shipping_zone_methods` VALUES (1,1,'free_shipping',1,1),(0,2,'free_shipping',1,1);
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zones`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
`zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`zone_order` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--
LOCK TABLES `wp_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_shipping_zones` VALUES (1,'United States (US)',0);
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
`location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`tax_rate_id` bigint(20) unsigned NOT NULL,
`location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
PRIMARY KEY (`location_id`),
KEY `tax_rate_id` (`tax_rate_id`),
KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--
LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rates`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
`tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`tax_rate_priority` bigint(20) unsigned NOT NULL,
`tax_rate_compound` int(1) NOT NULL DEFAULT '0',
`tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
`tax_rate_order` bigint(20) unsigned NOT NULL,
`tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`tax_rate_id`),
KEY `tax_rate_country` (`tax_rate_country`),
KEY `tax_rate_state` (`tax_rate_state`(2)),
KEY `tax_rate_class` (`tax_rate_class`(10)),
KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_tax_rates`
--
LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` 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 2018-07-09 12:17:18