-- MySQL dump 10.13 Distrib 5.6.41-84.1, for Linux (x86_64)
--
-- Host: localhost Database: missihkd_wp883
-- ------------------------------------------------------
-- Server version 5.6.41-84.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 `wpbd_commentmeta`
--
DROP TABLE IF EXISTS `wpbd_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpbd_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpbd_commentmeta`
--
LOCK TABLES `wpbd_commentmeta` WRITE;
/*!40000 ALTER TABLE `wpbd_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpbd_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wpbd_comments`
--
DROP TABLE IF EXISTS `wpbd_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpbd_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpbd_comments`
--
LOCK TABLES `wpbd_comments` WRITE;
/*!40000 ALTER TABLE `wpbd_comments` DISABLE KEYS */;
INSERT INTO `wpbd_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-08-16 07:58:29','2018-08-16 07:58:29','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),(2,1,'Jeanne','Jeanne@gmail.com','https://www.reliable-webhosting.com/','51.254.16.233','2019-06-15 16:49:08','2019-06-15 16:49:08','Hi, very nice website, cheers!\r\n------------------------------------------------------\r\nNeed cheap and reliable hosting? Our shared plans start at $10 for an year and VPS plans for $6/Mo.\r\n------------------------------------------------------\r\nCheck here: https://www.reliable-webhosting.com/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0','',0,0);
/*!40000 ALTER TABLE `wpbd_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wpbd_links`
--
DROP TABLE IF EXISTS `wpbd_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpbd_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpbd_links`
--
LOCK TABLES `wpbd_links` WRITE;
/*!40000 ALTER TABLE `wpbd_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpbd_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wpbd_nextend2_image_storage`
--
DROP TABLE IF EXISTS `wpbd_nextend2_image_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpbd_nextend2_image_storage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`hash` varchar(32) NOT NULL,
`image` text NOT NULL,
`value` mediumtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpbd_nextend2_image_storage`
--
LOCK TABLES `wpbd_nextend2_image_storage` WRITE;
/*!40000 ALTER TABLE `wpbd_nextend2_image_storage` DISABLE KEYS */;
INSERT INTO `wpbd_nextend2_image_storage` VALUES (1,'5e16afb6eff20a20d750f0ac134b5cab','$upload$/2018/10/banner-slider1.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(2,'799a4cf5a600b55734d92faa5fecbc5f','$upload$/2018/10/1507274096-namkeen_1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==');
/*!40000 ALTER TABLE `wpbd_nextend2_image_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wpbd_nextend2_section_storage`
--
DROP TABLE IF EXISTS `wpbd_nextend2_section_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpbd_nextend2_section_storage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`application` varchar(20) NOT NULL,
`section` varchar(128) NOT NULL,
`referencekey` varchar(128) NOT NULL,
`value` mediumtext NOT NULL,
`system` int(11) NOT NULL DEFAULT '0',
`editable` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `application` (`application`,`section`,`referencekey`),
KEY `application_2` (`application`,`section`)
) ENGINE=MyISAM AUTO_INCREMENT=10014 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpbd_nextend2_section_storage`
--
LOCK TABLES `wpbd_nextend2_section_storage` WRITE;
/*!40000 ALTER TABLE `wpbd_nextend2_section_storage` DISABLE KEYS */;
INSERT INTO `wpbd_nextend2_section_storage` VALUES (10000,'system','global','n2_ss3_version','3.3.7r2543',1,1),(10001,'smartslider','sliderChanged','2','0',0,1),(10010,'cache','notweb/n2-ss-2','data.manifest','{\"generator\":[]}',0,1),(10011,'cache','notweb/n2-ss-2','variations.manifest','1',0,1),(10012,'cache','notweb/n2-ss-2','slideren_US1.manifest','{\"hash\":\"\",\"nextCacheRefresh\":1854347132,\"currentPath\":\"e592f9036d376476e1c2ca575dfc396f\",\"version\":\"3.3.7\"}',0,1),(10013,'cache','notweb/n2-ss-2','slideren_US1','{\"html\":\"