-- --------------------------------------------------------
-- Host:                         localhost
-- Server version:               5.7.24 - MySQL Community Server (GPL)
-- Server OS:                    Win64
-- HeidiSQL Version:             10.2.0.5599
-- --------------------------------------------------------

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!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' */;

-- Dumping structure for table ebaskat.admins
CREATE TABLE IF NOT EXISTS `admins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `role_id` int(191) NOT NULL DEFAULT '0',
  `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT '1',
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `shop_name` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `admins_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.admins: ~3 rows (approximately)
/*!40000 ALTER TABLE `admins` DISABLE KEYS */;
INSERT INTO `admins` (`id`, `name`, `email`, `phone`, `role_id`, `photo`, `password`, `status`, `remember_token`, `created_at`, `updated_at`, `shop_name`) VALUES
	(1, 'Admin', 'admin@gmail.com', '01629552892', 0, '1619893260user-profile.png', '$2y$10$p35S2FczpEfpbe41CX4j4.XE548tHBtF5weGLPxZ56MX5dsOFtaCC', 1, '65iPp4zKfFRQRaq8yiNEohmmbeW3ix4CBX89Ov5YPZePIJgluQlhLGwbo2Dc', '2018-03-01 05:27:08', '2021-05-01 18:21:00', 'Genius Store'),
	(8, 'Jahid', 'jahid@gmail.com', '0123654789', 16, '16213545845.png', '$2y$10$gdDqTkf5lSRWGmP0ZYaXIuii5XAks83dQH1NivFM3vdYZqM4BtOnG', 1, NULL, '2021-05-18 16:16:24', '2021-05-18 16:16:24', NULL);
/*!40000 ALTER TABLE `admins` ENABLE KEYS */;

-- Dumping structure for table ebaskat.admin_languages
CREATE TABLE IF NOT EXISTS `admin_languages` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `language` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `file` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `rtl` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.admin_languages: ~2 rows (approximately)
/*!40000 ALTER TABLE `admin_languages` DISABLE KEYS */;
INSERT INTO `admin_languages` (`id`, `is_default`, `language`, `file`, `name`, `rtl`) VALUES
	(1, 1, 'English', '1567232745AoOcvCtY.json', '1567232745AoOcvCtY', 0),
	(2, 0, 'RTL English', '1584887310NzfWDhO8.json', '1584887310NzfWDhO8', 1);
/*!40000 ALTER TABLE `admin_languages` ENABLE KEYS */;

-- Dumping structure for table ebaskat.admin_log_histories
CREATE TABLE IF NOT EXISTS `admin_log_histories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `admin_user_id` bigint(20) DEFAULT NULL,
  `module_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `activity_label` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `history` text COLLATE utf8mb4_unicode_ci,
  `old_history` text COLLATE utf8mb4_unicode_ci,
  `ip_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mac_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.admin_log_histories: ~72 rows (approximately)
/*!40000 ALTER TABLE `admin_log_histories` DISABLE KEYS */;
INSERT INTO `admin_log_histories` (`id`, `admin_user_id`, `module_name`, `activity_label`, `history`, `old_history`, `ip_address`, `mac_address`, `user_agent`, `created_at`, `updated_at`) VALUES
	(1, 1, 'Product', 'CREATED', '{"name":"new product for log history","user_id":"32","sku":"2iw05998mD","category_id":"7","subcategory_id":"11","childcategory_id":null,"product_condition":0,"ship":null,"size":null,"size_qty":null,"size_price":null,"color":null,"whole_sell_qty":null,"whole_sell_discount":null,"stock":null,"measure":null,"details":"<br>","policy":"<br>","meta_description":null,"photo":"PArWIK6rZF.png","price":20,"previous_price":0,"youtube":null,"features":null,"colors":null,"type":"Physical","meta_tag":null,"attributes":null,"updated_at":"2021-05-03 16:50:28","created_at":"2021-05-03 16:50:28","id":138}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-03 16:50:30', '2021-05-03 16:50:30'),
	(2, 1, 'Product', 'UPDATED', '{"slug":"new-product-for-log-history-2iw05998md","thumbnail":"DxeQUdYyTs.jpg","updated_at":"2021-05-03 16:50:30"}', '{"id":138,"sku":"2iw05998mD","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":7,"subcategory_id":11,"childcategory_id":null,"attributes":null,"name":"new product for log history","slug":null,"photo":"PArWIK6rZF.png","thumbnail":null,"file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":0,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-03T16:50:28.000000Z","updated_at":"2021-05-03T16:50:28.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-03 16:50:31', '2021-05-03 16:50:31'),
	(3, 1, 'Product', 'UPDATED', '{"previous_price":30,"updated_at":"2021-05-03 16:51:02"}', '{"id":138,"sku":"2iw05998mD","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":7,"subcategory_id":11,"childcategory_id":null,"attributes":null,"name":"new product for log history","slug":"new-product-for-log-history-2iw05998md","photo":"PArWIK6rZF.png","thumbnail":"DxeQUdYyTs.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":0,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-03T16:50:28.000000Z","updated_at":"2021-05-03T16:50:30.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-03 16:51:02', '2021-05-03 16:51:02'),
	(4, 1, 'Product', 'UPDATED', '{"previous_price":120,"updated_at":"2021-05-03 16:51:54"}', '{"id":137,"sku":"UA71408bIx","product_type":"normal","affiliate_link":null,"user_id":49,"category_id":5,"subcategory_id":6,"childcategory_id":null,"attributes":null,"name":"new product upload","slug":"new-product-upload-ua71408bix","photo":"4jn0XUP949.png","thumbnail":"IjY7Mpq9yI.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":100,"previous_price":0,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-02T18:50:36.000000Z","updated_at":"2021-05-02T18:50:36.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-03 16:51:54', '2021-05-03 16:51:54'),
	(5, 1, 'Notification', 'UPDATED', '{"is_read":1,"updated_at":"2021-05-06 17:57:58"}', '{"id":14,"order_id":6,"user_id":null,"vendor_id":null,"product_id":null,"conversation_id":null,"is_read":0,"created_at":"2021-05-03T18:45:04.000000Z","updated_at":"2021-05-03T18:45:04.000000Z"}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-06 17:57:59', '2021-05-06 17:57:59'),
	(6, 1, 'Product', 'UPDATED', '{"commission":"10","updated_at":"2021-05-06 19:25:21"}', '{"id":138,"sku":"2iw05998mD","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":7,"subcategory_id":11,"childcategory_id":null,"attributes":null,"name":"new product for log history.","slug":"new-product-for-log-history-2iw05998md","photo":"t5KTbqKFrykj.jpg","thumbnail":"wJWtqF04QX8h.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":30,"commission":null,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-03T16:50:28.000000Z","updated_at":"2021-05-04T16:20:36.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-06 19:25:22', '2021-05-06 19:25:22'),
	(7, 1, 'Product', 'UPDATED', '{"commission":"30","updated_at":"2021-05-06 19:25:42"}', '{"id":138,"sku":"2iw05998mD","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":7,"subcategory_id":11,"childcategory_id":null,"attributes":null,"name":"new product for log history.","slug":"new-product-for-log-history-2iw05998md","photo":"t5KTbqKFrykj.jpg","thumbnail":"wJWtqF04QX8h.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":30,"commission":10,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-03T16:50:28.000000Z","updated_at":"2021-05-06T19:25:21.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-06 19:25:43', '2021-05-06 19:25:43'),
	(8, 1, 'Product', 'UPDATED', '{"commission":"40","updated_at":"2021-05-06 19:25:49"}', '{"id":138,"sku":"2iw05998mD","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":7,"subcategory_id":11,"childcategory_id":null,"attributes":null,"name":"new product for log history.","slug":"new-product-for-log-history-2iw05998md","photo":"t5KTbqKFrykj.jpg","thumbnail":"wJWtqF04QX8h.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":30,"commission":30,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-03T16:50:28.000000Z","updated_at":"2021-05-06T19:25:42.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-06 19:25:50', '2021-05-06 19:25:50'),
	(9, 1, 'Product', 'UPDATED', '{"commission":null,"updated_at":"2021-05-06 19:30:14"}', '{"id":138,"sku":"2iw05998mD","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":7,"subcategory_id":11,"childcategory_id":null,"attributes":null,"name":"new product for log history.","slug":"new-product-for-log-history-2iw05998md","photo":"t5KTbqKFrykj.jpg","thumbnail":"wJWtqF04QX8h.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":30,"commission":40,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-03T16:50:28.000000Z","updated_at":"2021-05-06T19:25:49.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-06 19:30:15', '2021-05-06 19:30:15'),
	(10, 1, 'Product', 'UPDATED', '{"commission":"0","updated_at":"2021-05-08 13:50:43"}', '{"id":138,"sku":"2iw05998mD","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":7,"subcategory_id":11,"childcategory_id":null,"attributes":null,"name":"new product for log history.","slug":"new-product-for-log-history-2iw05998md","photo":"t5KTbqKFrykj.jpg","thumbnail":"wJWtqF04QX8h.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":30,"commission":null,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-03T16:50:28.000000Z","updated_at":"2021-05-06T19:30:14.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-08 13:50:44', '2021-05-08 13:50:44'),
	(11, 1, 'Product', 'UPDATED', '{"price":20.4,"previous_price":30.5,"commission":"0.25","updated_at":"2021-05-08 13:50:55"}', '{"id":138,"sku":"2iw05998mD","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":7,"subcategory_id":11,"childcategory_id":null,"attributes":null,"name":"new product for log history.","slug":"new-product-for-log-history-2iw05998md","photo":"t5KTbqKFrykj.jpg","thumbnail":"wJWtqF04QX8h.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":30,"commission":0,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-03T16:50:28.000000Z","updated_at":"2021-05-08T13:50:43.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-08 13:50:56', '2021-05-08 13:50:56'),
	(12, 1, 'Product', 'CREATED', '{"name":"Test five","user_id":"32","sku":"I4B18920DF","category_id":"4","subcategory_id":"3","childcategory_id":null,"product_condition":0,"ship":null,"size":null,"size_qty":null,"size_price":null,"color":null,"whole_sell_qty":null,"whole_sell_discount":null,"stock":null,"measure":null,"details":"<br>","policy":"<br>","meta_description":null,"photo":"DjByT66ip3.png","price":20,"previous_price":0,"youtube":null,"features":null,"colors":null,"type":"Physical","commission":"20","meta_tag":null,"attributes":null,"updated_at":"2021-05-08 13:52:23","created_at":"2021-05-08 13:52:23","id":139}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-08 13:52:23', '2021-05-08 13:52:23'),
	(13, 1, 'Product', 'UPDATED', '{"slug":"test-five-i4b18920df","thumbnail":"QajdFYsAdl.jpg","updated_at":"2021-05-08 13:52:24"}', '{"id":139,"sku":"I4B18920DF","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":4,"subcategory_id":3,"childcategory_id":null,"attributes":null,"name":"Test five","slug":null,"photo":"DjByT66ip3.png","thumbnail":null,"file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":0,"commission":20,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-08T13:52:23.000000Z","updated_at":"2021-05-08T13:52:23.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-08 13:52:24', '2021-05-08 13:52:24'),
	(14, 1, 'User', 'UPDATED', '{"updated_at":"2021-05-09 17:27:50","ban":"1"}', '{"id":29,"name":"Jahidul","photo":null,"zip":null,"city":null,"country":null,"address":"T\\/10, Nurjahan Road, Mohammadpur, Dhaka 1207","phone":"01654646464","fax":null,"email":"developermood3@gmail.com","password":"$2y$10$BXXP3HYDkN9ptbqnMEIvUuR0mt\\/UEKUf4vTxQ6wJvFHhPH\\/k8Z1q.","remember_token":null,"created_at":"2021-04-12T18:38:12.000000Z","updated_at":"2021-04-12T18:38:12.000000Z","is_provider":0,"status":0,"verification_link":"b641ff0760c6677b8630044f966230cb","email_verified":"Yes","affilate_code":"55fed4f4f535b7d84107dd560ed16260","affilate_income":0,"f_url":null,"g_url":null,"t_url":null,"l_url":null,"is_vendor":1,"f_check":0,"g_check":0,"t_check":0,"l_check":0,"mail_sent":0,"shipping_cost":0,"current_balance":0,"date":null,"ban":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-09 17:27:50', '2021-05-09 17:27:50'),
	(15, 1, 'User', 'UPDATED', '{"updated_at":"2021-05-09 17:27:51","ban":"0"}', '{"id":29,"name":"Jahidul","photo":null,"zip":null,"city":null,"country":null,"address":"T\\/10, Nurjahan Road, Mohammadpur, Dhaka 1207","phone":"01654646464","fax":null,"email":"developermood3@gmail.com","password":"$2y$10$BXXP3HYDkN9ptbqnMEIvUuR0mt\\/UEKUf4vTxQ6wJvFHhPH\\/k8Z1q.","remember_token":null,"created_at":"2021-04-12T18:38:12.000000Z","updated_at":"2021-05-09T17:27:50.000000Z","is_provider":0,"status":0,"verification_link":"b641ff0760c6677b8630044f966230cb","email_verified":"Yes","affilate_code":"55fed4f4f535b7d84107dd560ed16260","affilate_income":0,"f_url":null,"g_url":null,"t_url":null,"l_url":null,"is_vendor":1,"f_check":0,"g_check":0,"t_check":0,"l_check":0,"mail_sent":0,"shipping_cost":0,"current_balance":0,"date":null,"ban":1}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-09 17:27:51', '2021-05-09 17:27:51'),
	(16, 1, 'User', 'UPDATED', '{"updated_at":"2021-05-09 17:27:53","ban":"1"}', '{"id":49,"name":"Jahidul Hasan","photo":null,"zip":null,"city":null,"country":"Bangladesh","address":"Dhaka","phone":"4752856354312","fax":null,"email":"newmerchant@gmail.com","password":"$2y$10$i1x9LrT16.bLsVEIfTJv8OEJlRNamdQfYjDTeRE8oEsiOJ.54jZMO","remember_token":null,"created_at":"2021-04-26T20:04:26.000000Z","updated_at":"2021-04-27T19:49:59.000000Z","is_provider":0,"status":0,"verification_link":"7f7a73a6dbd41b9269ac5d779c04c486","email_verified":"Yes","affilate_code":"8647d647b2a8bc27ff91b13e3d3020a0","affilate_income":0,"f_url":null,"g_url":null,"t_url":null,"l_url":null,"is_vendor":2,"f_check":0,"g_check":0,"t_check":0,"l_check":0,"mail_sent":1,"shipping_cost":0,"current_balance":0,"date":"2021-05-26","ban":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-09 17:27:53', '2021-05-09 17:27:53'),
	(17, 1, 'User', 'UPDATED', '{"updated_at":"2021-05-09 17:27:54","ban":"0"}', '{"id":49,"name":"Jahidul Hasan","photo":null,"zip":null,"city":null,"country":"Bangladesh","address":"Dhaka","phone":"4752856354312","fax":null,"email":"newmerchant@gmail.com","password":"$2y$10$i1x9LrT16.bLsVEIfTJv8OEJlRNamdQfYjDTeRE8oEsiOJ.54jZMO","remember_token":null,"created_at":"2021-04-26T20:04:26.000000Z","updated_at":"2021-05-09T17:27:53.000000Z","is_provider":0,"status":0,"verification_link":"7f7a73a6dbd41b9269ac5d779c04c486","email_verified":"Yes","affilate_code":"8647d647b2a8bc27ff91b13e3d3020a0","affilate_income":0,"f_url":null,"g_url":null,"t_url":null,"l_url":null,"is_vendor":2,"f_check":0,"g_check":0,"t_check":0,"l_check":0,"mail_sent":1,"shipping_cost":0,"current_balance":0,"date":"2021-05-26","ban":1}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-09 17:27:54', '2021-05-09 17:27:54'),
	(18, 1, 'Product', 'CREATED', '{"type":"Physical","sku":"123343561","category_id":4,"subcategory_id":2,"childcategory_id":1,"photo":"OHmFKSAOsL.jpg","name":"Test CSV Product","details":"This is product Description","color":"#000000,#9c1515,#24f015,#050bc2,#d1900c","price":20,"previous_price":25,"stock":"10","size":"X,3XL","size_qty":"22,23","size_price":"5,8","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","policy":"Test policy","meta_tag":"","meta_description":"","tags":"CLOTHS,FASHION,WOMEN FASHION,DRESSES,MENSWEAR","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","slug":"test-csv-product-123343561","updated_at":"2021-05-10 17:16:52","created_at":"2021-05-10 17:16:52","id":140}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-10 17:16:53', '2021-05-10 17:16:53'),
	(19, 1, 'Product', 'CREATED', '{"type":"Physical","sku":"123343561","category_id":4,"subcategory_id":2,"childcategory_id":1,"photo":"dp5D8Ev4xC.jpg","name":"Test CSV Product","details":"This is product Description","color":"#000000,#9c1515,#24f015,#050bc2,#d1900c","price":20,"previous_price":25,"stock":"10","size":"X,3XL","size_qty":"22,23","size_price":"5,8","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","policy":"Test policy","meta_tag":"","meta_description":"","tags":"CLOTHS,FASHION,WOMEN FASHION,DRESSES,MENSWEAR","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","slug":"test-csv-product-123343561","updated_at":"2021-05-10 17:37:47","created_at":"2021-05-10 17:37:47","id":141}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-10 17:37:47', '2021-05-10 17:37:47'),
	(20, 1, 'Product', 'CREATED', '{"type":"Physical","sku":"326543561","user_id":32,"commission":10,"category_id":4,"subcategory_id":2,"childcategory_id":1,"photo":"KtG8lUtgha.jpg","name":"Test CSV Product","details":"This is product Description","color":"#000000,#9c1515,#24f015,#050bc2,#d1900c","price":20,"previous_price":25,"stock":"10","size":"X,3XL","size_qty":"22,23","size_price":"5,8","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","policy":"Test policy","meta_tag":"","meta_description":"","tags":"CLOTHS,FASHION,WOMEN FASHION,DRESSES,MENSWEAR","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","slug":"test-csv-product-326543561","updated_at":"2021-05-10 18:02:52","created_at":"2021-05-10 18:02:52","id":142}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-10 18:02:53', '2021-05-10 18:02:53'),
	(21, 1, 'Product', 'CREATED', '{"type":"Physical","sku":"fftryf45b","category_id":4,"subcategory_id":2,"childcategory_id":1,"photo":"PtWwtcE85q.jpg","name":"Test CSV Product","details":"This is product Description","color":"#000000,#9c1515,#24f015,#050bc2,#d1900c","price":20,"previous_price":25,"stock":"10","size":"X,3XL","size_qty":"22,23","size_price":"5,8","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","policy":"Test policy","meta_tag":"","meta_description":"","tags":"CLOTHS,FASHION,WOMEN FASHION,DRESSES,MENSWEAR","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","slug":"test-csv-product-fftryf45b","updated_at":"2021-05-10 18:08:58","created_at":"2021-05-10 18:08:58","id":143}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-10 18:08:59', '2021-05-10 18:08:59'),
	(22, 1, 'Product', 'CREATED', '{"type":"Physical","sku":"edcrfy657","category_id":4,"subcategory_id":2,"childcategory_id":1,"photo":"IDoh3fQ0KC.jpg","name":"Test CSV Product","details":"This is product Description","color":"#000000,#9c1515,#24f015,#050bc2,#d1900c","price":20,"previous_price":25,"stock":"10","size":"X,3XL","size_qty":"22,23","size_price":"5,8","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","policy":"Test policy","meta_tag":"","meta_description":"","tags":"CLOTHS,FASHION,WOMEN FASHION,DRESSES,MENSWEAR","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","user_id":49,"commission":"10","slug":"test-csv-product-edcrfy657","updated_at":"2021-05-10 18:22:55","created_at":"2021-05-10 18:22:55","id":144}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36', '2021-05-10 18:22:55', '2021-05-10 18:22:55'),
	(23, 1, 'User', 'UPDATED', '{"updated_at":"2021-05-12 09:23:54","current_balance":30}', '{"id":32,"name":"Jahidul Hasan Zahid","photo":null,"zip":null,"city":null,"country":null,"address":"T\\/10, Nurjahan Road, Mohammadpur","phone":"01654646464","fax":null,"email":"vendor@vendor.com","password":"$2y$10$gqEvoLoxSlRoIjWnbgQJ.eHLpHzovLLB6twDBuJTgATwB9OzdPAAm","remember_token":null,"created_at":"2021-04-16T17:08:33.000000Z","updated_at":"2021-04-16T17:08:51.000000Z","is_provider":0,"status":0,"verification_link":"e6cf9334fd57507ce7f3c3d567e2ccc2","email_verified":"Yes","affilate_code":"2be3e3206c37e465e1010715e04f24f4","affilate_income":0,"f_url":null,"g_url":null,"t_url":null,"l_url":null,"is_vendor":2,"f_check":0,"g_check":0,"t_check":0,"l_check":0,"mail_sent":0,"shipping_cost":0,"current_balance":0,"date":"2021-05-16","ban":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-12 09:23:55', '2021-05-12 09:23:55'),
	(24, 1, 'Order', 'UPDATED', '{"status":"completed","updated_at":"2021-05-12 09:23:56"}', '{"id":6,"user_id":31,"cart":"O:15:\\"App\\\\Models\\\\Cart\\":30:{s:5:\\"items\\";a:1:{s:22:\\"136LocalsellerWarranty\\";a:14:{s:3:\\"qty\\";i:1;s:8:\\"size_key\\";i:0;s:8:\\"size_qty\\";s:0:\\"\\";s:10:\\"size_price\\";s:0:\\"\\";s:4:\\"size\\";s:0:\\"\\";s:5:\\"color\\";s:0:\\"\\";s:5:\\"stock\\";N;s:5:\\"price\\";d:30;s:4:\\"item\\";O:18:\\"App\\\\Models\\\\Product\\":27:{s:11:\\"\\u0000*\\u0000fillable\\";a:52:{i:0;s:7:\\"user_id\\";i:1;s:11:\\"category_id\\";i:2;s:12:\\"product_type\\";i:3;s:14:\\"affiliate_link\\";i:4;s:3:\\"sku\\";i:5;s:14:\\"subcategory_id\\";i:6;s:16:\\"childcategory_id\\";i:7;s:10:\\"attributes\\";i:8;s:4:\\"name\\";i:9;s:5:\\"photo\\";i:10;s:4:\\"size\\";i:11;s:8:\\"size_qty\\";i:12;s:10:\\"size_price\\";i:13;s:5:\\"color\\";i:14;s:7:\\"details\\";i:15;s:5:\\"price\\";i:16;s:14:\\"previous_price\\";i:17;s:5:\\"stock\\";i:18;s:6:\\"policy\\";i:19;s:6:\\"status\\";i:20;s:5:\\"views\\";i:21;s:4:\\"tags\\";i:22;s:8:\\"featured\\";i:23;s:4:\\"best\\";i:24;s:3:\\"top\\";i:25;s:3:\\"hot\\";i:26;s:6:\\"latest\\";i:27;s:3:\\"big\\";i:28;s:8:\\"trending\\";i:29;s:4:\\"sale\\";i:30;s:8:\\"features\\";i:31;s:6:\\"colors\\";i:32;s:17:\\"product_condition\\";i:33;s:4:\\"ship\\";i:34;s:8:\\"meta_tag\\";i:35;s:16:\\"meta_description\\";i:36;s:7:\\"youtube\\";i:37;s:4:\\"type\\";i:38;s:4:\\"file\\";i:39;s:7:\\"license\\";i:40;s:11:\\"license_qty\\";i:41;s:4:\\"link\\";i:42;s:8:\\"platform\\";i:43;s:6:\\"region\\";i:44;s:12:\\"licence_type\\";i:45;s:7:\\"measure\\";i:46;s:13:\\"discount_date\\";i:47;s:11:\\"is_discount\\";i:48;s:14:\\"whole_sell_qty\\";i:49;s:19:\\"whole_sell_discount\\";i:50;s:10:\\"catalog_id\\";i:51;s:4:\\"slug\\";}s:13:\\"\\u0000*\\u0000connection\\";s:5:\\"mysql\\";s:8:\\"\\u0000*\\u0000table\\";s:8:\\"products\\";s:13:\\"\\u0000*\\u0000primaryKey\\";s:2:\\"id\\";s:10:\\"\\u0000*\\u0000keyType\\";s:3:\\"int\\";s:12:\\"incrementing\\";b:1;s:7:\\"\\u0000*\\u0000with\\";a:0:{}s:12:\\"\\u0000*\\u0000withCount\\";a:0:{}s:10:\\"\\u0000*\\u0000perPage\\";i:15;s:6:\\"exists\\";b:1;s:18:\\"wasRecentlyCreated\\";b:0;s:13:\\"\\u0000*\\u0000attributes\\";a:20:{s:2:\\"id\\";i:136;s:7:\\"user_id\\";i:32;s:4:\\"slug\\";s:34:\\"merchant-test-product-2-beu9030s93\\";s:4:\\"name\\";s:23:\\"Merchant Test Product 2\\";s:5:\\"photo\\";s:16:\\"c3e01xzp2SjK.jpg\\";s:4:\\"size\\";N;s:8:\\"size_qty\\";N;s:10:\\"size_price\\";N;s:5:\\"color\\";N;s:5:\\"price\\";d:30;s:5:\\"stock\\";N;s:4:\\"type\\";s:8:\\"Physical\\";s:4:\\"file\\";N;s:4:\\"link\\";N;s:7:\\"license\\";N;s:11:\\"license_qty\\";N;s:7:\\"measure\\";N;s:14:\\"whole_sell_qty\\";N;s:19:\\"whole_sell_discount\\";N;s:10:\\"attributes\\";s:113:\\"{\\"warranty_type\\":{\\"values\\":[\\"Local seller Warranty\\",\\"Non local warranty\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1}}\\";}s:11:\\"\\u0000*\\u0000original\\";a:20:{s:2:\\"id\\";i:136;s:7:\\"user_id\\";i:32;s:4:\\"slug\\";s:34:\\"merchant-test-product-2-beu9030s93\\";s:4:\\"name\\";s:23:\\"Merchant Test Product 2\\";s:5:\\"photo\\";s:16:\\"c3e01xzp2SjK.jpg\\";s:4:\\"size\\";N;s:8:\\"size_qty\\";N;s:10:\\"size_price\\";N;s:5:\\"color\\";N;s:5:\\"price\\";d:30;s:5:\\"stock\\";N;s:4:\\"type\\";s:8:\\"Physical\\";s:4:\\"file\\";N;s:4:\\"link\\";N;s:7:\\"license\\";N;s:11:\\"license_qty\\";N;s:7:\\"measure\\";N;s:14:\\"whole_sell_qty\\";N;s:19:\\"whole_sell_discount\\";N;s:10:\\"attributes\\";s:113:\\"{\\"warranty_type\\":{\\"values\\":[\\"Local seller Warranty\\",\\"Non local warranty\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1}}\\";}s:10:\\"\\u0000*\\u0000changes\\";a:0:{}s:8:\\"\\u0000*\\u0000casts\\";a:0:{}s:17:\\"\\u0000*\\u0000classCastCache\\";a:0:{}s:8:\\"\\u0000*\\u0000dates\\";a:0:{}s:13:\\"\\u0000*\\u0000dateFormat\\";N;s:10:\\"\\u0000*\\u0000appends\\";a:0:{}s:19:\\"\\u0000*\\u0000dispatchesEvents\\";a:0:{}s:14:\\"\\u0000*\\u0000observables\\";a:0:{}s:12:\\"\\u0000*\\u0000relations\\";a:0:{}s:10:\\"\\u0000*\\u0000touches\\";a:0:{}s:10:\\"timestamps\\";b:1;s:9:\\"\\u0000*\\u0000hidden\\";a:0:{}s:10:\\"\\u0000*\\u0000visible\\";a:0:{}s:10:\\"\\u0000*\\u0000guarded\\";a:1:{i:0;s:1:\\"*\\";}}s:7:\\"license\\";s:0:\\"\\";s:2:\\"dp\\";s:1:\\"0\\";s:4:\\"keys\\";s:13:\\"warranty_type\\";s:6:\\"values\\";s:21:\\"Local seller Warranty\\";s:10:\\"item_price\\";d:30;}}s:8:\\"totalQty\\";i:1;s:10:\\"totalPrice\\";d:30;s:13:\\"\\u0000*\\u0000connection\\";N;s:8:\\"\\u0000*\\u0000table\\";N;s:13:\\"\\u0000*\\u0000primaryKey\\";s:2:\\"id\\";s:10:\\"\\u0000*\\u0000keyType\\";s:3:\\"int\\";s:12:\\"incrementing\\";b:1;s:7:\\"\\u0000*\\u0000with\\";a:0:{}s:12:\\"\\u0000*\\u0000withCount\\";a:0:{}s:10:\\"\\u0000*\\u0000perPage\\";i:15;s:6:\\"exists\\";b:0;s:18:\\"wasRecentlyCreated\\";b:0;s:13:\\"\\u0000*\\u0000attributes\\";a:0:{}s:11:\\"\\u0000*\\u0000original\\";a:0:{}s:10:\\"\\u0000*\\u0000changes\\";a:0:{}s:8:\\"\\u0000*\\u0000casts\\";a:0:{}s:17:\\"\\u0000*\\u0000classCastCache\\";a:0:{}s:8:\\"\\u0000*\\u0000dates\\";a:0:{}s:13:\\"\\u0000*\\u0000dateFormat\\";N;s:10:\\"\\u0000*\\u0000appends\\";a:0:{}s:19:\\"\\u0000*\\u0000dispatchesEvents\\";a:0:{}s:14:\\"\\u0000*\\u0000observables\\";a:0:{}s:12:\\"\\u0000*\\u0000relations\\";a:0:{}s:10:\\"\\u0000*\\u0000touches\\";a:0:{}s:10:\\"timestamps\\";b:1;s:9:\\"\\u0000*\\u0000hidden\\";a:0:{}s:10:\\"\\u0000*\\u0000visible\\";a:0:{}s:11:\\"\\u0000*\\u0000fillable\\";a:0:{}s:10:\\"\\u0000*\\u0000guarded\\";a:1:{i:0;s:1:\\"*\\";}}","method":"Cash On Delivery","shipping":"shipto","pickup_location":"Azampur","totalQty":"1","pay_amount":30,"txnid":null,"charge_id":null,"order_number":"7rixSVSnnH","payment_status":"Pending","customer_email":"jahidulhasanzahid71@gmail.com","customer_name":"Jahidul Hasan","customer_country":"Bangladesh","customer_phone":"01224345355","customer_address":"Dhaka","customer_city":"Dhaka","customer_zip":"1207","shipping_name":null,"shipping_country":null,"shipping_email":null,"shipping_phone":null,"shipping_address":null,"shipping_city":null,"shipping_zip":null,"order_note":null,"coupon_code":null,"coupon_discount":null,"status":"pending","created_at":"2021-05-03T18:45:04.000000Z","updated_at":"2021-05-03T18:45:04.000000Z","affilate_user":null,"affilate_charge":null,"currency_sign":"$","currency_value":1,"shipping_cost":0,"packing_cost":0,"tax":0,"dp":0,"pay_id":null,"vendor_shipping_id":0,"vendor_packing_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-12 09:23:56', '2021-05-12 09:23:56'),
	(25, 1, 'Notification', 'UPDATED', '{"is_read":1,"updated_at":"2021-05-16 15:48:16"}', '{"id":15,"order_id":null,"user_id":50,"vendor_id":null,"product_id":null,"conversation_id":null,"is_read":0,"created_at":"2021-05-10T20:09:17.000000Z","updated_at":"2021-05-10T20:09:17.000000Z"}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-16 15:48:18', '2021-05-16 15:48:18'),
	(26, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-18 16:15:33","created_at":"2021-05-18 16:15:33","id":3}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-18 16:15:34', '2021-05-18 16:15:34'),
	(27, 1, 'Vendor Information', 'UPDATED', '{"status":"Declined","updated_at":"2021-05-18 19:39:36"}', '{"id":10,"user_id":32,"shop_name":"new merchant shop..","owner_name":"new merchant owner name..","shop_number":"shop number...","shop_address":"shop address...","reg_number":"registration number...","shop_message":"message...","shop_details":"Testing Part....","shop_image":"1619553597woman-3190829_1280.jpg","attachments":"1619865415verify.txt","status":"Pending","text":"please verify my account","admin_warning":0,"warning_reason":"please verify","created_at":"2021-04-26T20:04:26.000000Z","updated_at":"2021-05-01T10:36:55.000000Z"}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-18 19:39:37', '2021-05-18 19:39:37'),
	(28, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 09:09:48","created_at":"2021-05-19 09:09:48","id":4}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 09:09:49', '2021-05-19 09:09:49'),
	(29, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:05:36","created_at":"2021-05-19 17:05:36","id":5}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:05:37', '2021-05-19 17:05:37'),
	(30, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:07:57","created_at":"2021-05-19 17:07:57","id":6}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:07:58', '2021-05-19 17:07:58'),
	(31, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:09:54","created_at":"2021-05-19 17:09:54","id":7}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:09:55', '2021-05-19 17:09:55'),
	(32, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:10:03","created_at":"2021-05-19 17:10:03","id":8}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:10:03', '2021-05-19 17:10:03'),
	(33, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:10:10","created_at":"2021-05-19 17:10:10","id":9}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:10:10', '2021-05-19 17:10:10'),
	(34, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:10:17","created_at":"2021-05-19 17:10:17","id":10}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:10:17', '2021-05-19 17:10:17'),
	(35, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:10:22","created_at":"2021-05-19 17:10:22","id":11}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:10:22', '2021-05-19 17:10:22'),
	(36, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:10:28","created_at":"2021-05-19 17:10:28","id":12}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:10:28', '2021-05-19 17:10:28'),
	(37, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:10:32","created_at":"2021-05-19 17:10:32","id":13}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:10:33', '2021-05-19 17:10:33'),
	(38, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:10:37","created_at":"2021-05-19 17:10:37","id":14}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:10:37', '2021-05-19 17:10:37'),
	(39, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:11:44","created_at":"2021-05-19 17:11:44","id":15}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:11:44', '2021-05-19 17:11:44'),
	(40, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:11:51","created_at":"2021-05-19 17:11:51","id":16}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:11:52', '2021-05-19 17:11:52'),
	(41, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:12:00","created_at":"2021-05-19 17:12:00","id":17}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:12:00', '2021-05-19 17:12:00'),
	(42, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:12:06","created_at":"2021-05-19 17:12:06","id":18}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:12:06', '2021-05-19 17:12:06'),
	(43, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:12:12","created_at":"2021-05-19 17:12:12","id":19}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:12:12', '2021-05-19 17:12:12'),
	(44, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:12:21","created_at":"2021-05-19 17:12:21","id":20}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:12:21', '2021-05-19 17:12:21'),
	(45, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:12:26","created_at":"2021-05-19 17:12:26","id":21}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:12:26', '2021-05-19 17:12:26'),
	(46, 1, 'Permission', 'CREATED', '{"name":{},"updated_at":"2021-05-19 17:12:32","created_at":"2021-05-19 17:12:32","id":22}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-19 17:12:32', '2021-05-19 17:12:32'),
	(47, 1, 'Product', 'UPDATED', '{"updated_at":"2021-05-20 17:42:32","is_discount":0,"discount_date":null}', '{"id":133,"sku":"8rM3921LR1","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":"{\\"warranty_type\\":{\\"values\\":[\\"Local seller warranty\\",\\"No warranty\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1},\\"brand\\":{\\"values\\":[\\"Symphony\\",\\"Apple\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1},\\"ram\\":{\\"values\\":[\\"3 GB\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"color_family\\":{\\"values\\":[\\"Black\\",\\"White\\",\\"Sliver\\"],\\"prices\\":[\\"0\\",\\"0\\",\\"0\\"],\\"details_status\\":1},\\"display_size\\":{\\"values\\":[\\"40\\",\\"32\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1}}","name":"Apple POD.","slug":"apple-pod-8rm3921lr1","photo":"DlHmUaTHmr02.jpg","thumbnail":"MvngHD7aJzBz.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":200,"previous_price":300,"commission":null,"details":"Testing Details","stock":null,"policy":"Testing Details<br>","status":1,"views":7,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":"https:\\/\\/www.youtube.com\\/watch?v=BaLHthRsqQk","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":1,"best":1,"top":1,"hot":1,"latest":1,"big":1,"trending":1,"sale":1,"created_at":"2021-04-18T19:28:52.000000Z","updated_at":"2021-05-09T17:33:17.000000Z","is_discount":1,"discount_date":"04\\/30\\/2021","whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:42:33', '2021-05-20 17:42:33'),
	(48, 1, 'Product', 'UPDATED', '{"commission":"0","updated_at":"2021-05-20 17:42:42"}', '{"id":133,"sku":"8rM3921LR1","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":"{\\"warranty_type\\":{\\"values\\":[\\"Local seller warranty\\",\\"No warranty\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1},\\"brand\\":{\\"values\\":[\\"Symphony\\",\\"Apple\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1},\\"ram\\":{\\"values\\":[\\"3 GB\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"color_family\\":{\\"values\\":[\\"Black\\",\\"White\\",\\"Sliver\\"],\\"prices\\":[\\"0\\",\\"0\\",\\"0\\"],\\"details_status\\":1},\\"display_size\\":{\\"values\\":[\\"40\\",\\"32\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1}}","name":"Apple POD.","slug":"apple-pod-8rm3921lr1","photo":"DlHmUaTHmr02.jpg","thumbnail":"MvngHD7aJzBz.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":200,"previous_price":300,"commission":null,"details":"Testing Details","stock":null,"policy":"Testing Details<br>","status":1,"views":7,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":"https:\\/\\/www.youtube.com\\/watch?v=BaLHthRsqQk","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":1,"best":1,"top":1,"hot":1,"latest":1,"big":1,"trending":1,"sale":1,"created_at":"2021-04-18T19:28:52.000000Z","updated_at":"2021-05-20T17:42:32.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:42:42', '2021-05-20 17:42:42'),
	(49, 1, 'Product', 'UPDATED', '{"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"updated_at":"2021-05-20 17:46:21"}', '{"id":133,"sku":"8rM3921LR1","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":"{\\"warranty_type\\":{\\"values\\":[\\"Local seller warranty\\",\\"No warranty\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1},\\"brand\\":{\\"values\\":[\\"Symphony\\",\\"Apple\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1},\\"ram\\":{\\"values\\":[\\"3 GB\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"color_family\\":{\\"values\\":[\\"Black\\",\\"White\\",\\"Sliver\\"],\\"prices\\":[\\"0\\",\\"0\\",\\"0\\"],\\"details_status\\":1},\\"display_size\\":{\\"values\\":[\\"40\\",\\"32\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1}}","name":"Apple POD.","slug":"apple-pod-8rm3921lr1","photo":"DlHmUaTHmr02.jpg","thumbnail":"MvngHD7aJzBz.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":200,"previous_price":300,"commission":0,"details":"Testing Details","stock":null,"policy":"Testing Details<br>","status":1,"views":7,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":"https:\\/\\/www.youtube.com\\/watch?v=BaLHthRsqQk","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":1,"best":1,"top":1,"hot":1,"latest":1,"big":1,"trending":1,"sale":1,"created_at":"2021-04-18T19:28:52.000000Z","updated_at":"2021-05-20T17:42:42.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:22', '2021-05-20 17:46:22'),
	(50, 1, 'Product', 'DELETED', NULL, '{"id":133,"sku":"8rM3921LR1","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":"{\\"warranty_type\\":{\\"values\\":[\\"Local seller warranty\\",\\"No warranty\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1},\\"brand\\":{\\"values\\":[\\"Symphony\\",\\"Apple\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1},\\"ram\\":{\\"values\\":[\\"3 GB\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"color_family\\":{\\"values\\":[\\"Black\\",\\"White\\",\\"Sliver\\"],\\"prices\\":[\\"0\\",\\"0\\",\\"0\\"],\\"details_status\\":1},\\"display_size\\":{\\"values\\":[\\"40\\",\\"32\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1}}","name":"Apple POD.","slug":"apple-pod-8rm3921lr1","photo":"DlHmUaTHmr02.jpg","thumbnail":"MvngHD7aJzBz.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":200,"previous_price":300,"commission":0,"details":"Testing Details","stock":null,"policy":"Testing Details<br>","status":1,"views":7,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":"https:\\/\\/www.youtube.com\\/watch?v=BaLHthRsqQk","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-04-18T19:28:52.000000Z","updated_at":"2021-05-20T17:46:21.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:27', '2021-05-20 17:46:27'),
	(51, 1, 'Product', 'DELETED', NULL, '{"id":136,"sku":"BEu9030S93","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":5,"subcategory_id":6,"childcategory_id":null,"attributes":"{\\"warranty_type\\":{\\"values\\":[\\"Local seller Warranty\\",\\"Non local warranty\\"],\\"prices\\":[\\"0\\",\\"0\\"],\\"details_status\\":1}}","name":"Merchant Test Product 2","slug":"merchant-test-product-2-beu9030s93","photo":"c3e01xzp2SjK.jpg","thumbnail":"LDQBUb0UKQAd.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":30,"previous_price":0,"commission":null,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":6,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":1,"best":1,"top":1,"hot":1,"latest":1,"big":1,"trending":1,"sale":1,"created_at":"2021-04-28T19:44:23.000000Z","updated_at":"2021-05-09T17:35:42.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:31', '2021-05-20 17:46:31'),
	(52, 1, 'Product', 'DELETED', NULL, '{"id":134,"sku":"jC375352zx","product_type":"normal","affiliate_link":null,"user_id":49,"category_id":4,"subcategory_id":2,"childcategory_id":2,"attributes":null,"name":"New merchant product","slug":"new-merchant-product-jc375352zx","photo":"gnjJYe0P0jBB.jpg","thumbnail":"i8er27ysEOJH.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":200,"previous_price":0,"commission":null,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":2,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-04-26T20:07:12.000000Z","updated_at":"2021-04-27T20:10:12.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:34', '2021-05-20 17:46:34'),
	(53, 1, 'Product', 'DELETED', NULL, '{"id":138,"sku":"2iw05998mD","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":7,"subcategory_id":11,"childcategory_id":null,"attributes":null,"name":"new product for log history.","slug":"new-product-for-log-history-2iw05998md","photo":"t5KTbqKFrykj.jpg","thumbnail":"wJWtqF04QX8h.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":20.4,"previous_price":30.5,"commission":0.25,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-03T16:50:28.000000Z","updated_at":"2021-05-08T13:50:55.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:38', '2021-05-20 17:46:38'),
	(54, 1, 'Product', 'DELETED', NULL, '{"id":137,"sku":"UA71408bIx","product_type":"normal","affiliate_link":null,"user_id":49,"category_id":5,"subcategory_id":6,"childcategory_id":null,"attributes":null,"name":"new product upload","slug":"new-product-upload-ua71408bix","photo":"4jn0XUP949.png","thumbnail":"IjY7Mpq9yI.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":100,"previous_price":120,"commission":null,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-02T18:50:36.000000Z","updated_at":"2021-05-03T16:51:54.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:41', '2021-05-20 17:46:41'),
	(55, 1, 'Product', 'DELETED', NULL, '{"id":139,"sku":"I4B18920DF","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":4,"subcategory_id":3,"childcategory_id":null,"attributes":null,"name":"Test five","slug":"test-five-i4b18920df","photo":"DjByT66ip3.png","thumbnail":"QajdFYsAdl.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":20,"previous_price":0,"commission":20,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-08T13:52:23.000000Z","updated_at":"2021-05-11T19:55:34.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:45', '2021-05-20 17:46:45'),
	(56, 1, 'Product', 'DELETED', NULL, '{"id":130,"sku":"Hiv22448kp","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":"{\\"warranty_type\\":{\\"values\\":[\\"Local seller warranty\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"brand\\":{\\"values\\":[\\"Oppo\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"ram\\":{\\"values\\":[\\"2 GB\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"color_family\\":{\\"values\\":[\\"Dark Grey\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"display_size\\":{\\"values\\":[\\"24\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1}}","name":"Test Product","slug":"test-product-hiv22448kp","photo":"sTSRKSmkyc.png","thumbnail":"wLy8hVqQoi.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":200,"previous_price":0,"commission":null,"details":"<span style=\\"font-weight: bold; color: rgb(95, 99, 104); font-family: arial, sans-serif;\\">Lorem ipsum<\\/span><span style=\\"color: rgb(77, 81, 86); font-family: arial, sans-serif;\\">, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero\'s De Finibus Bonorum et Malorum for use in a type specimen book.<\\/span><br>","stock":null,"policy":"<span style=\\"font-weight: bold; color: rgb(95, 99, 104); font-family: arial, sans-serif;\\">Lorem ipsum<\\/span><span style=\\"color: rgb(77, 81, 86); font-family: arial, sans-serif;\\">, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero\'s De Finibus Bonorum et Malorum for use in a type specimen book.<\\/span><br>","status":1,"views":4,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":1,"best":1,"top":1,"hot":1,"latest":1,"big":1,"trending":1,"sale":1,"created_at":"2021-04-12T12:58:44.000000Z","updated_at":"2021-05-02T18:47:53.000000Z","is_discount":1,"discount_date":"04\\/30\\/2021","whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:49', '2021-05-20 17:46:49'),
	(57, 1, 'Product', 'DELETED', NULL, '{"id":131,"sku":"ogl4338keE","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":"{\\"warranty_type\\":{\\"values\\":[\\"No warranty\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"brand\\":{\\"values\\":[\\"Oppo\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"ram\\":{\\"values\\":[\\"2 GB\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"color_family\\":{\\"values\\":[\\"White\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1},\\"display_size\\":{\\"values\\":[\\"22\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1}}","name":"Test Product Two","slug":"test-product-two-ogl4338kee","photo":"ezsUGucn8g.png","thumbnail":"mIG4vGfJ2Q.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":200,"previous_price":0,"commission":null,"details":"<span style=\\"font-weight: bold; color: rgb(95, 99, 104); font-family: arial, sans-serif;\\">Lorem ipsum<\\/span><span style=\\"color: rgb(77, 81, 86); font-family: arial, sans-serif;\\">, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero\'s De Finibus Bonorum et Malorum for use in a type specimen book.<\\/span><br>","stock":10,"policy":"<span style=\\"font-weight: bold; color: rgb(95, 99, 104); font-family: arial, sans-serif;\\">Lorem ipsum<\\/span><span style=\\"color: rgb(77, 81, 86); font-family: arial, sans-serif;\\">, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero\'s De Finibus Bonorum et Malorum for use in a type specimen book.<\\/span><br>","status":1,"views":2,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":1,"best":1,"top":1,"hot":1,"latest":1,"big":1,"trending":1,"sale":1,"created_at":"2021-04-12T13:33:12.000000Z","updated_at":"2021-05-09T17:45:56.000000Z","is_discount":1,"discount_date":"04\\/30\\/2021","whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:52', '2021-05-20 17:46:52'),
	(58, 1, 'Product', 'DELETED', NULL, '{"id":132,"sku":"4Oe6984tWU","product_type":"normal","affiliate_link":null,"user_id":32,"category_id":5,"subcategory_id":8,"childcategory_id":null,"attributes":"{\\"warranty_type\\":{\\"values\\":[\\"No Warranty\\"],\\"prices\\":[\\"0\\"],\\"details_status\\":1}}","name":"Test Vendor Product","slug":"test-vendor-product-4oe6984twu","photo":"j7fOCblZbq9P.jpg","thumbnail":"T0HvRM7gUsn7.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":100,"previous_price":120,"commission":null,"details":"test","stock":null,"policy":"test","status":1,"views":2,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-04-16T18:17:42.000000Z","updated_at":"2021-04-24T20:11:44.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:46:55', '2021-05-20 17:46:55'),
	(59, 1, 'Product', 'DELETED', NULL, '{"id":135,"sku":"kYe8812zb5","product_type":"affiliate","affiliate_link":"https:\\/\\/www.daraz.com.bd\\/products\\/full-coverage-chiffon-jorjet-georgette-hijab-for-women-big-size-long-82-90-inch-width-30-32-inch-i181116428-s1122627897.html?spm=a2a0e.home.just4u.2.73524591NFFbUu&scm=1007.28811.161233.0&pvid=092a29bb-e0c1-4238-995b-8551d1c78b15&clickTrackInfo=pvid%3A092a29bb-e0c1-4238-995b-8551d1c78b15%3Bchannel_id%3A0000%3Bmt%3Ahot%3Bitem_id%3A181116428%3B","user_id":32,"category_id":5,"subcategory_id":8,"childcategory_id":null,"attributes":null,"name":"affiliate product","slug":"affiliate-product-kye8812zb5","photo":"rbKUsqnuRe.png","thumbnail":"DterBQgAjN.jpg","file":null,"size":"","size_qty":"","size_price":"","color":"","price":200,"previous_price":0,"commission":null,"details":"<br>","stock":null,"policy":"<br>","status":1,"views":0,"tags":"","features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":null,"youtube":null,"type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-04-28T19:41:30.000000Z","updated_at":"2021-05-12T08:41:15.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:47:05', '2021-05-20 17:47:05'),
	(60, 1, 'Product', 'DELETED', NULL, '{"id":141,"sku":"123343561","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","user_id":0,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":null,"name":"Test CSV Product","slug":"test-csv-product-123343561","photo":"dp5D8Ev4xC.jpg","thumbnail":null,"file":null,"size":["X","3XL"],"size_qty":["22","23"],"size_price":["5","8"],"color":["#000000","#9c1515","#24f015","#050bc2","#d1900c"],"price":20,"previous_price":25,"commission":null,"details":"This is product Description","stock":10,"policy":"Test policy","status":1,"views":0,"tags":["CLOTHS","FASHION","WOMEN FASHION","DRESSES","MENSWEAR"],"features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":"","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-10T17:37:47.000000Z","updated_at":"2021-05-10T17:37:47.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:47:09', '2021-05-20 17:47:09'),
	(61, 1, 'Product', 'DELETED', NULL, '{"id":142,"sku":"326543561","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","user_id":32,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":null,"name":"Test CSV Product","slug":"test-csv-product-326543561","photo":"KtG8lUtgha.jpg","thumbnail":null,"file":null,"size":["X","3XL"],"size_qty":["22","23"],"size_price":["5","8"],"color":["#000000","#9c1515","#24f015","#050bc2","#d1900c"],"price":20,"previous_price":25,"commission":10,"details":"This is product Description","stock":10,"policy":"Test policy","status":1,"views":0,"tags":["CLOTHS","FASHION","WOMEN FASHION","DRESSES","MENSWEAR"],"features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":"","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-10T18:02:52.000000Z","updated_at":"2021-05-10T18:02:52.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:47:12', '2021-05-20 17:47:12'),
	(62, 1, 'Product', 'DELETED', NULL, '{"id":144,"sku":"edcrfy657","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","user_id":49,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":null,"name":"Test CSV Product","slug":"test-csv-product-edcrfy657","photo":"IDoh3fQ0KC.jpg","thumbnail":null,"file":null,"size":["X","3XL"],"size_qty":["22","23"],"size_price":["5","8"],"color":["#000000","#9c1515","#24f015","#050bc2","#d1900c"],"price":20,"previous_price":25,"commission":10,"details":"This is product Description","stock":10,"policy":"Test policy","status":1,"views":0,"tags":["CLOTHS","FASHION","WOMEN FASHION","DRESSES","MENSWEAR"],"features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":"","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-10T18:22:55.000000Z","updated_at":"2021-05-10T18:22:55.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:47:14', '2021-05-20 17:47:14'),
	(63, 1, 'Product', 'DELETED', NULL, '{"id":143,"sku":"fftryf45b","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","user_id":0,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":null,"name":"Test CSV Product","slug":"test-csv-product-fftryf45b","photo":"PtWwtcE85q.jpg","thumbnail":null,"file":null,"size":["X","3XL"],"size_qty":["22","23"],"size_price":["5","8"],"color":["#000000","#9c1515","#24f015","#050bc2","#d1900c"],"price":20,"previous_price":25,"commission":null,"details":"This is product Description","stock":10,"policy":"Test policy","status":1,"views":0,"tags":["CLOTHS","FASHION","WOMEN FASHION","DRESSES","MENSWEAR"],"features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":"","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-10T18:08:58.000000Z","updated_at":"2021-05-10T18:08:58.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:47:17', '2021-05-20 17:47:17'),
	(64, 1, 'Pagesetting', 'UPDATED', '{"slider":0,"service":0,"featured":0,"small_banner":0,"best":0,"top_rated":0,"large_banner":0,"big":0,"hot_sale":0,"partners":0,"review_blog":0,"bottom_small":0,"flash_deal":0,"featured_category":0}', '{"id":1,"contact_success":"Success! Thanks for contacting us, we will get back to you shortly.","contact_email":"admin@geniusocean.com","contact_title":"<h4 class=\\"subtitle\\" style=\\"margin-bottom: 6px; font-weight: 600; line-height: 28px; font-size: 28px; text-transform: uppercase;\\">WE\'D LOVE TO<\\/h4><h2 class=\\"title\\" style=\\"margin-bottom: 13px;font-weight: 600;line-height: 50px;font-size: 40px;color: #0f78f2;text-transform: uppercase;\\">HEAR FROM YOU<\\/h2>","contact_text":"<span style=\\"color: rgb(119, 119, 119);\\">Send us a message and we\' ll respond as soon as possible<\\/span><br>","side_title":"<h4 class=\\"title\\" style=\\"margin-bottom: 10px; font-weight: 600; line-height: 28px; font-size: 28px;\\">Let\'s Connect<\\/h4>","side_text":"<span style=\\"color: rgb(51, 51, 51);\\">Get in touch with us<\\/span>","street":"3584 Hickory Heights Drive ,Hanover MD 21076, USA","phone":"00 000 000 000","fax":"00 000 000 000","email":"admin@geniusocean.com","site":"https:\\/\\/geniusocean.com\\/","slider":1,"service":1,"featured":1,"small_banner":1,"best":1,"top_rated":1,"large_banner":1,"big":1,"hot_sale":1,"partners":1,"review_blog":1,"best_seller_banner":"1568889138banner1.jpg","best_seller_banner_link":"http:\\/\\/google.com","big_save_banner":"1565150264banner3.jpg","big_save_banner_link":"http:\\/\\/google.com","bottom_small":1,"flash_deal":1,"best_seller_banner1":"1568889138banner2.jpg","best_seller_banner_link1":"http:\\/\\/google.com","big_save_banner1":"1565150264banner4.jpg","big_save_banner_link1":"http:\\/\\/google.com","featured_category":1}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:49:10', '2021-05-20 17:49:10'),
	(65, 1, 'Pagesetting', 'UPDATED', '{"slider":"1","featured_category":"1"}', '{"id":1,"contact_success":"Success! Thanks for contacting us, we will get back to you shortly.","contact_email":"admin@geniusocean.com","contact_title":"<h4 class=\\"subtitle\\" style=\\"margin-bottom: 6px; font-weight: 600; line-height: 28px; font-size: 28px; text-transform: uppercase;\\">WE\'D LOVE TO<\\/h4><h2 class=\\"title\\" style=\\"margin-bottom: 13px;font-weight: 600;line-height: 50px;font-size: 40px;color: #0f78f2;text-transform: uppercase;\\">HEAR FROM YOU<\\/h2>","contact_text":"<span style=\\"color: rgb(119, 119, 119);\\">Send us a message and we\' ll respond as soon as possible<\\/span><br>","side_title":"<h4 class=\\"title\\" style=\\"margin-bottom: 10px; font-weight: 600; line-height: 28px; font-size: 28px;\\">Let\'s Connect<\\/h4>","side_text":"<span style=\\"color: rgb(51, 51, 51);\\">Get in touch with us<\\/span>","street":"3584 Hickory Heights Drive ,Hanover MD 21076, USA","phone":"00 000 000 000","fax":"00 000 000 000","email":"admin@geniusocean.com","site":"https:\\/\\/geniusocean.com\\/","slider":0,"service":0,"featured":0,"small_banner":0,"best":0,"top_rated":0,"large_banner":0,"big":0,"hot_sale":0,"partners":0,"review_blog":0,"best_seller_banner":"1568889138banner1.jpg","best_seller_banner_link":"http:\\/\\/google.com","big_save_banner":"1565150264banner3.jpg","big_save_banner_link":"http:\\/\\/google.com","bottom_small":0,"flash_deal":0,"best_seller_banner1":"1568889138banner2.jpg","best_seller_banner_link1":"http:\\/\\/google.com","big_save_banner1":"1565150264banner4.jpg","big_save_banner_link1":"http:\\/\\/google.com","featured_category":0}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:49:27', '2021-05-20 17:49:27'),
	(66, 1, 'Blog', 'DELETED', NULL, '{"id":25,"category_id":3,"title":"How to design effective arts?","details":"<div align=\\"justify\\">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA\\u2019s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br><\\/div><h3 align=\\"justify\\" style=\\"font-family: \\" helvetica=\\"\\" neue\\",=\\"\\" helvetica,=\\"\\" arial,=\\"\\" sans-serif;=\\"\\" color:=\\"\\" rgb(51,=\\"\\" 51,=\\"\\" 51);\\"=\\"\\">How its Works ?<\\/h3><p align=\\"justify\\">MIAMI \\u2014 For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br><\\/p><p align=\\"justify\\">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that\\u2019s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br><\\/p><p align=\\"justify\\"><br><\\/p><h3 align=\\"justify\\" style=\\"font-family: \\" helvetica=\\"\\" neue\\",=\\"\\" helvetica,=\\"\\" arial,=\\"\\" sans-serif;=\\"\\" color:=\\"\\" rgb(51,=\\"\\" 51,=\\"\\" 51);\\"=\\"\\">Top 5 reason to choose us<\\/h3><p align=\\"justify\\">Mauna Loa, the biggest volcano on Earth \\u2014 and one of the most active \\u2014 covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean \\u2014 and why are their chemical compositions so different? \\"We knew this was related to something much deeper, but we couldn\\u2019t see what,\\u201d said Tim Jones.<\\/p>","photo":"15557542831-min.jpg","source":"www.geniusocean.com","views":40,"status":1,"meta_tag":null,"meta_description":null,"tags":"Business,Research,Mechanical,Process,Innovation,Engineering","created_at":"2019-01-03T12:03:59.000000Z"}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:53:03', '2021-05-20 17:53:03'),
	(67, 1, 'Pagesetting', 'UPDATED', '{"review_blog":"1"}', '{"id":1,"contact_success":"Success! Thanks for contacting us, we will get back to you shortly.","contact_email":"admin@geniusocean.com","contact_title":"<h4 class=\\"subtitle\\" style=\\"margin-bottom: 6px; font-weight: 600; line-height: 28px; font-size: 28px; text-transform: uppercase;\\">WE\'D LOVE TO<\\/h4><h2 class=\\"title\\" style=\\"margin-bottom: 13px;font-weight: 600;line-height: 50px;font-size: 40px;color: #0f78f2;text-transform: uppercase;\\">HEAR FROM YOU<\\/h2>","contact_text":"<span style=\\"color: rgb(119, 119, 119);\\">Send us a message and we\' ll respond as soon as possible<\\/span><br>","side_title":"<h4 class=\\"title\\" style=\\"margin-bottom: 10px; font-weight: 600; line-height: 28px; font-size: 28px;\\">Let\'s Connect<\\/h4>","side_text":"<span style=\\"color: rgb(51, 51, 51);\\">Get in touch with us<\\/span>","street":"3584 Hickory Heights Drive ,Hanover MD 21076, USA","phone":"00 000 000 000","fax":"00 000 000 000","email":"admin@geniusocean.com","site":"https:\\/\\/geniusocean.com\\/","slider":1,"service":0,"featured":0,"small_banner":0,"best":0,"top_rated":0,"large_banner":0,"big":0,"hot_sale":0,"partners":0,"review_blog":0,"best_seller_banner":"1568889138banner1.jpg","best_seller_banner_link":"http:\\/\\/google.com","big_save_banner":"1565150264banner3.jpg","big_save_banner_link":"http:\\/\\/google.com","bottom_small":0,"flash_deal":0,"best_seller_banner1":"1568889138banner2.jpg","best_seller_banner_link1":"http:\\/\\/google.com","big_save_banner1":"1565150264banner4.jpg","big_save_banner_link1":"http:\\/\\/google.com","featured_category":1}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 17:53:18', '2021-05-20 17:53:18'),
	(68, 1, 'Blog', 'UPDATED', '{"views":70}', '{"id":22,"category_id":2,"title":"How to design effective arts?","details":"<div align=\\"justify\\">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA\\u2019s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br><\\/div><h3 align=\\"justify\\" style=\\"font-family: \\" helvetica=\\"\\" neue\\",=\\"\\" helvetica,=\\"\\" arial,=\\"\\" sans-serif;=\\"\\" color:=\\"\\" rgb(51,=\\"\\" 51,=\\"\\" 51);\\"=\\"\\">How its Works ?<\\/h3><p align=\\"justify\\">MIAMI \\u2014 For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br><\\/p><p align=\\"justify\\">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that\\u2019s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br><\\/p><p align=\\"justify\\"><br><\\/p><h3 align=\\"justify\\" style=\\"font-family: \\" helvetica=\\"\\" neue\\",=\\"\\" helvetica,=\\"\\" arial,=\\"\\" sans-serif;=\\"\\" color:=\\"\\" rgb(51,=\\"\\" 51,=\\"\\" 51);\\"=\\"\\">Top 5 reason to choose us<\\/h3><p align=\\"justify\\">Mauna Loa, the biggest volcano on Earth \\u2014 and one of the most active \\u2014 covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean \\u2014 and why are their chemical compositions so different? \\"We knew this was related to something much deeper, but we couldn\\u2019t see what,\\u201d said Tim Jones.<\\/p>","photo":"15542698954-min.jpg","source":"www.geniusocean.com","views":69,"status":1,"meta_tag":null,"meta_description":null,"tags":"Business,Research,Mechanical,Process,Innovation,Engineering","created_at":"2019-01-03T12:03:59.000000Z"}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-20 18:12:27', '2021-05-20 18:12:27'),
	(69, 1, 'Page', 'CREATED', '{"title":"test","slug":"testpage","details":"hello","meta_description":null,"meta_tag":null,"id":4}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-21 05:49:52', '2021-05-21 05:49:52'),
	(70, 1, 'Attribute', 'CREATED', '{"name":"he","attributable_id":"5","attributable_type":"App\\\\Models\\\\Category","input_name":"he","price_status":0,"details_status":0,"updated_at":"2021-05-21 05:54:46","created_at":"2021-05-21 05:54:46","id":34}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-21 05:54:46', '2021-05-21 05:54:46'),
	(71, 1, 'Attribute Option', 'CREATED', '{"attribute_id":34,"name":"spray","updated_at":"2021-05-21 05:54:46","created_at":"2021-05-21 05:54:46","id":256}', NULL, '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-21 05:54:46', '2021-05-21 05:54:46'),
	(72, 1, 'Attribute', 'DELETED', NULL, '{"id":34,"attributable_id":5,"attributable_type":"App\\\\Models\\\\Category","name":"he","input_name":"he","price_status":0,"details_status":0,"created_at":"2021-05-21T05:54:46.000000Z","updated_at":"2021-05-21T05:54:46.000000Z"}', '::1', '00-0F-00-AD-C3-53', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-21 05:55:57', '2021-05-21 05:55:57'),
	(73, 1, 'Seotool', 'UPDATED', '{"google_analytics":"<script>\\/\\/Google Analytics<\\/script>"}', '{"id":1,"google_analytics":"<script>\\/\\/Google Analytics Scriptfffffffffffffffffffffffssssfffffs<\\/script>","meta_keys":"Genius,Ocean,Sea,Etc,Genius,Ocean,SeaGenius,Ocean,Sea,Etc,Genius,Ocean,SeaGenius,Ocean,Sea,Etc,Genius,Ocean,Sea"}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-22 16:22:59', '2021-05-22 16:22:59'),
	(74, 1, 'Pagesetting', 'UPDATED', '{"small_banner":"1","bottom_small":"1"}', '{"id":1,"contact_success":"Success! Thanks for contacting us, we will get back to you shortly.","contact_email":"admin@geniusocean.com","contact_title":"<h4 class=\\"subtitle\\" style=\\"margin-bottom: 6px; font-weight: 600; line-height: 28px; font-size: 28px; text-transform: uppercase;\\">WE\'D LOVE TO<\\/h4><h2 class=\\"title\\" style=\\"margin-bottom: 13px;font-weight: 600;line-height: 50px;font-size: 40px;color: #0f78f2;text-transform: uppercase;\\">HEAR FROM YOU<\\/h2>","contact_text":"<span style=\\"color: rgb(119, 119, 119);\\">Send us a message and we\' ll respond as soon as possible<\\/span><br>","side_title":"<h4 class=\\"title\\" style=\\"margin-bottom: 10px; font-weight: 600; line-height: 28px; font-size: 28px;\\">Let\'s Connect<\\/h4>","side_text":"<span style=\\"color: rgb(51, 51, 51);\\">Get in touch with us<\\/span>","street":"3584 Hickory Heights Drive ,Hanover MD 21076, USA","phone":"00 000 000 000","fax":"00 000 000 000","email":"admin@geniusocean.com","site":"https:\\/\\/geniusocean.com\\/","slider":1,"service":0,"featured":0,"small_banner":0,"best":0,"top_rated":0,"large_banner":0,"big":0,"hot_sale":0,"partners":0,"review_blog":1,"best_seller_banner":"1568889138banner1.jpg","best_seller_banner_link":"http:\\/\\/google.com","big_save_banner":"1565150264banner3.jpg","big_save_banner_link":"http:\\/\\/google.com","bottom_small":0,"flash_deal":0,"best_seller_banner1":"1568889138banner2.jpg","best_seller_banner_link1":"http:\\/\\/google.com","big_save_banner1":"1565150264banner4.jpg","big_save_banner_link1":"http:\\/\\/google.com","featured_category":1}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-22 20:26:39', '2021-05-22 20:26:39'),
	(75, 1, 'Pagesetting', 'UPDATED', '{"small_banner":0,"bottom_small":0}', '{"id":1,"contact_success":"Success! Thanks for contacting us, we will get back to you shortly.","contact_email":"admin@geniusocean.com","contact_title":"<h4 class=\\"subtitle\\" style=\\"margin-bottom: 6px; font-weight: 600; line-height: 28px; font-size: 28px; text-transform: uppercase;\\">WE\'D LOVE TO<\\/h4><h2 class=\\"title\\" style=\\"margin-bottom: 13px;font-weight: 600;line-height: 50px;font-size: 40px;color: #0f78f2;text-transform: uppercase;\\">HEAR FROM YOU<\\/h2>","contact_text":"<span style=\\"color: rgb(119, 119, 119);\\">Send us a message and we\' ll respond as soon as possible<\\/span><br>","side_title":"<h4 class=\\"title\\" style=\\"margin-bottom: 10px; font-weight: 600; line-height: 28px; font-size: 28px;\\">Let\'s Connect<\\/h4>","side_text":"<span style=\\"color: rgb(51, 51, 51);\\">Get in touch with us<\\/span>","street":"3584 Hickory Heights Drive ,Hanover MD 21076, USA","phone":"00 000 000 000","fax":"00 000 000 000","email":"admin@geniusocean.com","site":"https:\\/\\/geniusocean.com\\/","slider":1,"service":0,"featured":0,"small_banner":1,"best":0,"top_rated":0,"large_banner":0,"big":0,"hot_sale":0,"partners":0,"review_blog":1,"best_seller_banner":"1568889138banner1.jpg","best_seller_banner_link":"http:\\/\\/google.com","big_save_banner":"1565150264banner3.jpg","big_save_banner_link":"http:\\/\\/google.com","bottom_small":1,"flash_deal":0,"best_seller_banner1":"1568889138banner2.jpg","best_seller_banner_link1":"http:\\/\\/google.com","big_save_banner1":"1565150264banner4.jpg","big_save_banner_link1":"http:\\/\\/google.com","featured_category":1}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-22 20:27:05', '2021-05-22 20:27:05'),
	(76, 8, 'Pagesetting', 'UPDATED', '{"featured":"1"}', '{"id":1,"contact_success":"Success! Thanks for contacting us, we will get back to you shortly.","contact_email":"admin@geniusocean.com","contact_title":"<h4 class=\\"subtitle\\" style=\\"margin-bottom: 6px; font-weight: 600; line-height: 28px; font-size: 28px; text-transform: uppercase;\\">WE\'D LOVE TO<\\/h4><h2 class=\\"title\\" style=\\"margin-bottom: 13px;font-weight: 600;line-height: 50px;font-size: 40px;color: #0f78f2;text-transform: uppercase;\\">HEAR FROM YOU<\\/h2>","contact_text":"<span style=\\"color: rgb(119, 119, 119);\\">Send us a message and we\' ll respond as soon as possible<\\/span><br>","side_title":"<h4 class=\\"title\\" style=\\"margin-bottom: 10px; font-weight: 600; line-height: 28px; font-size: 28px;\\">Let\'s Connect<\\/h4>","side_text":"<span style=\\"color: rgb(51, 51, 51);\\">Get in touch with us<\\/span>","street":"3584 Hickory Heights Drive ,Hanover MD 21076, USA","phone":"00 000 000 000","fax":"00 000 000 000","email":"admin@geniusocean.com","site":"https:\\/\\/geniusocean.com\\/","slider":1,"service":0,"featured":0,"small_banner":0,"best":0,"top_rated":0,"large_banner":0,"big":0,"hot_sale":0,"partners":0,"review_blog":1,"best_seller_banner":"1568889138banner1.jpg","best_seller_banner_link":"http:\\/\\/google.com","big_save_banner":"1565150264banner3.jpg","big_save_banner_link":"http:\\/\\/google.com","bottom_small":0,"flash_deal":0,"best_seller_banner1":"1568889138banner2.jpg","best_seller_banner_link1":"http:\\/\\/google.com","big_save_banner1":"1565150264banner4.jpg","big_save_banner_link1":"http:\\/\\/google.com","featured_category":1}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-23 14:30:01', '2021-05-23 14:30:01'),
	(77, 8, 'Pagesetting', 'UPDATED', '{"featured":0}', '{"id":1,"contact_success":"Success! Thanks for contacting us, we will get back to you shortly.","contact_email":"admin@geniusocean.com","contact_title":"<h4 class=\\"subtitle\\" style=\\"margin-bottom: 6px; font-weight: 600; line-height: 28px; font-size: 28px; text-transform: uppercase;\\">WE\'D LOVE TO<\\/h4><h2 class=\\"title\\" style=\\"margin-bottom: 13px;font-weight: 600;line-height: 50px;font-size: 40px;color: #0f78f2;text-transform: uppercase;\\">HEAR FROM YOU<\\/h2>","contact_text":"<span style=\\"color: rgb(119, 119, 119);\\">Send us a message and we\' ll respond as soon as possible<\\/span><br>","side_title":"<h4 class=\\"title\\" style=\\"margin-bottom: 10px; font-weight: 600; line-height: 28px; font-size: 28px;\\">Let\'s Connect<\\/h4>","side_text":"<span style=\\"color: rgb(51, 51, 51);\\">Get in touch with us<\\/span>","street":"3584 Hickory Heights Drive ,Hanover MD 21076, USA","phone":"00 000 000 000","fax":"00 000 000 000","email":"admin@geniusocean.com","site":"https:\\/\\/geniusocean.com\\/","slider":1,"service":0,"featured":1,"small_banner":0,"best":0,"top_rated":0,"large_banner":0,"big":0,"hot_sale":0,"partners":0,"review_blog":1,"best_seller_banner":"1568889138banner1.jpg","best_seller_banner_link":"http:\\/\\/google.com","big_save_banner":"1565150264banner3.jpg","big_save_banner_link":"http:\\/\\/google.com","bottom_small":0,"flash_deal":0,"best_seller_banner1":"1568889138banner2.jpg","best_seller_banner_link1":"http:\\/\\/google.com","big_save_banner1":"1565150264banner4.jpg","big_save_banner_link1":"http:\\/\\/google.com","featured_category":1}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-23 14:30:06', '2021-05-23 14:30:06'),
	(78, 1, 'Order', 'UPDATED', '{"payment_status":"Pending","status":"processing","updated_at":"2021-05-25 21:10:43"}', '{"id":1,"user_id":29,"cart":"hello","method":"Stripe","shipping":null,"pickup_location":null,"totalQty":"1","pay_amount":30,"txnid":null,"charge_id":null,"order_number":"456547567","payment_status":"pending","customer_email":"d@d.com","customer_name":"d","customer_country":"bd","customer_phone":"346546","customer_address":"dhaka","customer_city":"gdf","customer_zip":"435","shipping_name":"vgdf","shipping_country":"dfg","shipping_email":"df","shipping_phone":null,"shipping_address":null,"shipping_city":null,"shipping_zip":null,"order_note":null,"coupon_code":null,"coupon_discount":null,"status":"pending","created_at":"2021-05-26T02:35:05.000000Z","updated_at":"2021-05-26T02:35:08.000000Z","affilate_user":null,"affilate_charge":null,"currency_sign":"$","currency_value":0,"shipping_cost":0,"packing_cost":0,"tax":0,"dp":0,"pay_id":null,"vendor_shipping_id":0,"vendor_packing_id":0}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-25 21:10:45', '2021-05-25 21:10:45'),
	(79, 1, 'Order', 'UPDATED', '{"status":"on delivery","updated_at":"2021-05-25 21:11:41"}', '{"id":1,"user_id":29,"cart":"hello","method":"Stripe","shipping":null,"pickup_location":null,"totalQty":"1","pay_amount":30,"txnid":null,"charge_id":null,"order_number":"456547567","payment_status":"Pending","customer_email":"d@d.com","customer_name":"d","customer_country":"bd","customer_phone":"346546","customer_address":"dhaka","customer_city":"gdf","customer_zip":"435","shipping_name":"vgdf","shipping_country":"dfg","shipping_email":"df","shipping_phone":null,"shipping_address":null,"shipping_city":null,"shipping_zip":null,"order_note":null,"coupon_code":null,"coupon_discount":null,"status":"processing","created_at":"2021-05-26T02:35:05.000000Z","updated_at":"2021-05-25T21:10:43.000000Z","affilate_user":null,"affilate_charge":null,"currency_sign":"$","currency_value":0,"shipping_cost":0,"packing_cost":0,"tax":0,"dp":0,"pay_id":null,"vendor_shipping_id":0,"vendor_packing_id":0}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-25 21:11:41', '2021-05-25 21:11:41'),
	(80, 1, 'Order', 'UPDATED', '{"status":"completed","updated_at":"2021-05-25 21:12:13"}', '{"id":1,"user_id":29,"cart":"hello","method":"Stripe","shipping":null,"pickup_location":null,"totalQty":"1","pay_amount":30,"txnid":null,"charge_id":null,"order_number":"456547567","payment_status":"Pending","customer_email":"d@d.com","customer_name":"d","customer_country":"bd","customer_phone":"346546","customer_address":"dhaka","customer_city":"gdf","customer_zip":"435","shipping_name":"vgdf","shipping_country":"dfg","shipping_email":"df","shipping_phone":null,"shipping_address":null,"shipping_city":null,"shipping_zip":null,"order_note":null,"coupon_code":null,"coupon_discount":null,"status":"on delivery","created_at":"2021-05-26T02:35:05.000000Z","updated_at":"2021-05-25T21:11:41.000000Z","affilate_user":null,"affilate_charge":null,"currency_sign":"$","currency_value":0,"shipping_cost":0,"packing_cost":0,"tax":0,"dp":0,"pay_id":null,"vendor_shipping_id":0,"vendor_packing_id":0}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-25 21:12:13', '2021-05-25 21:12:13'),
	(81, 1, 'Product', 'CREATED', '{"type":"Physical","sku":"123343561","category_id":4,"subcategory_id":2,"childcategory_id":1,"photo":"lt33JpyaEY.jpg","name":"Test CSV Product","details":"This is product Description","color":"#000000,#9c1515,#24f015,#050bc2,#d1900c","price":20,"previous_price":25,"stock":"10","size":"X,3XL","size_qty":"22,23","size_price":"5,8","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","policy":"Test policy","meta_tag":"","meta_description":"","tags":"CLOTHS,FASHION,WOMEN FASHION,DRESSES,MENSWEAR","product_type":"affiliate","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","user_id":50,"commission":"0","slug":"test-csv-product-123343561","updated_at":"2021-05-28 19:11:36","created_at":"2021-05-28 19:11:36","id":1}', NULL, '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-28 19:11:37', '2021-05-28 19:11:37'),
	(82, 1, 'Product', 'UPDATED', '{"status":"0","updated_at":"2021-05-28 19:18:01"}', '{"id":1,"sku":"123343561","product_type":"normal","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","user_id":50,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":null,"name":"Test CSV Product","slug":"test-csv-product-123343561","photo":"lt33JpyaEY.jpg","thumbnail":null,"file":null,"size":["X","3XL"],"size_qty":["22","23"],"size_price":["5","8"],"color":["#000000","#9c1515","#24f015","#050bc2","#d1900c"],"price":20,"previous_price":25,"commission":0,"details":"This is product Description","stock":10,"policy":"Test policy","status":1,"views":0,"tags":["CLOTHS","FASHION","WOMEN FASHION","DRESSES","MENSWEAR"],"features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":"","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-28T19:11:36.000000Z","updated_at":"2021-05-28T19:11:36.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-28 19:18:02', '2021-05-28 19:18:02'),
	(83, 1, 'Product', 'UPDATED', '{"status":"1","updated_at":"2021-05-28 19:18:03"}', '{"id":1,"sku":"123343561","product_type":"normal","affiliate_link":"https:\\/\\/www.amazon.com\\/adidas-Girls-Sleeveless-Toddler-Little\\/dp\\/B07MTJL7ZT\\/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1","user_id":50,"category_id":4,"subcategory_id":2,"childcategory_id":1,"attributes":null,"name":"Test CSV Product","slug":"test-csv-product-123343561","photo":"lt33JpyaEY.jpg","thumbnail":null,"file":null,"size":["X","3XL"],"size_qty":["22","23"],"size_price":["5","8"],"color":["#000000","#9c1515","#24f015","#050bc2","#d1900c"],"price":20,"previous_price":25,"commission":0,"details":"This is product Description","stock":10,"policy":"Test policy","status":0,"views":0,"tags":["CLOTHS","FASHION","WOMEN FASHION","DRESSES","MENSWEAR"],"features":"","colors":"","product_condition":0,"ship":null,"is_meta":0,"meta_tag":"","meta_description":"","youtube":"https:\\/\\/www.youtube.com\\/watch?v=7hx4gdlfamo","type":"Physical","license":"","license_qty":"","link":null,"platform":null,"region":null,"licence_type":null,"measure":null,"featured":0,"best":0,"top":0,"hot":0,"latest":0,"big":0,"trending":0,"sale":0,"created_at":"2021-05-28T19:11:36.000000Z","updated_at":"2021-05-28T19:18:01.000000Z","is_discount":0,"discount_date":null,"whole_sell_qty":"","whole_sell_discount":"","is_catalog":0,"catalog_id":0}', '::1', 'A4-5D-36-BE-BB-64', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36', '2021-05-28 19:18:03', '2021-05-28 19:18:03');
/*!40000 ALTER TABLE `admin_log_histories` ENABLE KEYS */;

-- Dumping structure for table ebaskat.admin_user_conversations
CREATE TABLE IF NOT EXISTS `admin_user_conversations` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `subject` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int(191) NOT NULL,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `type` enum('Ticket','Dispute') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_number` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.admin_user_conversations: ~0 rows (approximately)
/*!40000 ALTER TABLE `admin_user_conversations` DISABLE KEYS */;
INSERT INTO `admin_user_conversations` (`id`, `subject`, `user_id`, `message`, `created_at`, `updated_at`, `type`, `order_number`) VALUES
	(1, 'Order Confirmation', 22, 'rfgdfgfd', '2020-01-21 07:18:38', '2020-01-21 07:18:38', 'Ticket', NULL);
/*!40000 ALTER TABLE `admin_user_conversations` ENABLE KEYS */;

-- Dumping structure for table ebaskat.admin_user_messages
CREATE TABLE IF NOT EXISTS `admin_user_messages` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `conversation_id` int(191) NOT NULL,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.admin_user_messages: ~0 rows (approximately)
/*!40000 ALTER TABLE `admin_user_messages` DISABLE KEYS */;
INSERT INTO `admin_user_messages` (`id`, `conversation_id`, `message`, `user_id`, `created_at`, `updated_at`) VALUES
	(1, 1, 'rfgdfgfd', 22, '2020-01-21 07:18:38', '2020-01-21 07:18:38');
/*!40000 ALTER TABLE `admin_user_messages` ENABLE KEYS */;

-- Dumping structure for table ebaskat.attributes
CREATE TABLE IF NOT EXISTS `attributes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `attributable_id` int(11) DEFAULT NULL,
  `attributable_type` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `input_name` varchar(255) DEFAULT NULL,
  `price_status` int(3) NOT NULL DEFAULT '1' COMMENT '0 - hide, 1- show	',
  `details_status` int(3) NOT NULL DEFAULT '1' COMMENT '0 - hide, 1- show	',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.attributes: ~10 rows (approximately)
/*!40000 ALTER TABLE `attributes` DISABLE KEYS */;
INSERT INTO `attributes` (`id`, `attributable_id`, `attributable_type`, `name`, `input_name`, `price_status`, `details_status`, `created_at`, `updated_at`) VALUES
	(14, 5, 'App\\Models\\Category', 'Warranty Type', 'warranty_type', 1, 1, '2019-09-24 04:56:07', '2019-09-24 04:56:07'),
	(20, 4, 'App\\Models\\Category', 'Warranty Type', 'warranty_type', 1, 1, '2019-09-24 06:41:46', '2019-10-03 06:18:54'),
	(21, 4, 'App\\Models\\Category', 'Brand', 'brand', 1, 1, '2019-09-24 06:44:13', '2019-10-03 06:19:13'),
	(22, 2, 'App\\Models\\Subcategory', 'Color Family', 'color_family', 1, 1, '2019-09-24 06:45:45', '2019-09-24 06:45:45'),
	(24, 1, 'App\\Models\\Childcategory', 'Display Size', 'display_size', 1, 1, '2019-09-24 06:54:17', '2019-09-24 06:54:17'),
	(25, 12, 'App\\Models\\Subcategory', 'demo', 'demo', 1, 1, '2019-09-24 07:26:47', '2019-09-24 07:26:47'),
	(30, 3, 'App\\Models\\Subcategory', 'Interior Color', 'interior_color', 1, 1, '2019-09-24 10:31:44', '2019-09-24 10:31:44'),
	(31, 8, 'App\\Models\\Childcategory', 'Temperature', 'temperature', 1, 1, '2019-09-24 10:34:35', '2019-09-24 10:34:35'),
	(32, 18, 'App\\Models\\Category', 'Demo', 'demo', 1, 1, '2019-10-03 05:39:12', '2019-10-03 05:39:12'),
	(33, 4, 'App\\Models\\Category', 'RAM', 'ram', 1, 1, '2019-10-12 09:22:03', '2019-10-13 05:30:39');
/*!40000 ALTER TABLE `attributes` ENABLE KEYS */;

-- Dumping structure for table ebaskat.attribute_options
CREATE TABLE IF NOT EXISTS `attribute_options` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `attribute_id` int(11) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=256 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.attribute_options: ~39 rows (approximately)
/*!40000 ALTER TABLE `attribute_options` DISABLE KEYS */;
INSERT INTO `attribute_options` (`id`, `attribute_id`, `name`, `created_at`, `updated_at`) VALUES
	(107, 14, 'No Warranty', '2019-09-24 04:56:07', '2019-09-24 04:56:07'),
	(108, 14, 'Local seller Warranty', '2019-09-24 04:56:07', '2019-09-24 04:56:07'),
	(109, 14, 'Non local warranty', '2019-09-24 04:56:07', '2019-09-24 04:56:07'),
	(110, 14, 'International Manufacturer Warranty', '2019-09-24 04:56:07', '2019-09-24 04:56:07'),
	(111, 14, 'International Seller Warranty', '2019-09-24 04:56:07', '2019-09-24 04:56:07'),
	(157, 22, 'Black', '2019-09-24 06:46:26', '2019-09-24 06:46:26'),
	(158, 22, 'White', '2019-09-24 06:46:26', '2019-09-24 06:46:26'),
	(159, 22, 'Sliver', '2019-09-24 06:46:26', '2019-09-24 06:46:26'),
	(160, 22, 'Red', '2019-09-24 06:46:26', '2019-09-24 06:46:26'),
	(161, 22, 'Dark Grey', '2019-09-24 06:46:26', '2019-09-24 06:46:26'),
	(162, 22, 'Dark Blue', '2019-09-24 06:46:26', '2019-09-24 06:46:26'),
	(163, 22, 'Brown', '2019-09-24 06:46:26', '2019-09-24 06:46:26'),
	(172, 24, '40', '2019-09-24 07:25:32', '2019-09-24 07:25:32'),
	(173, 24, '22', '2019-09-24 07:25:32', '2019-09-24 07:25:32'),
	(174, 24, '24', '2019-09-24 07:25:32', '2019-09-24 07:25:32'),
	(175, 24, '32', '2019-09-24 07:25:32', '2019-09-24 07:25:32'),
	(176, 24, '21', '2019-09-24 07:25:32', '2019-09-24 07:25:32'),
	(177, 25, 'demo 1', '2019-09-24 07:26:47', '2019-09-24 07:26:47'),
	(178, 25, 'demo 2', '2019-09-24 07:26:47', '2019-09-24 07:26:47'),
	(187, 30, 'Yellow', '2019-09-24 10:31:44', '2019-09-24 10:31:44'),
	(188, 30, 'White', '2019-09-24 10:31:44', '2019-09-24 10:31:44'),
	(189, 31, '22', '2019-09-24 10:34:35', '2019-09-24 10:34:35'),
	(190, 31, '34', '2019-09-24 10:34:35', '2019-09-24 10:34:35'),
	(191, 31, '45', '2019-09-24 10:34:35', '2019-09-24 10:34:35'),
	(195, 20, 'Local seller warranty', '2019-10-03 06:18:54', '2019-10-03 06:18:54'),
	(196, 20, 'No warranty', '2019-10-03 06:18:54', '2019-10-03 06:18:54'),
	(197, 20, 'international manufacturer warranty', '2019-10-03 06:18:54', '2019-10-03 06:18:54'),
	(198, 20, 'Non-local warranty', '2019-10-03 06:18:54', '2019-10-03 06:18:54'),
	(199, 21, 'Symphony', '2019-10-03 06:19:13', '2019-10-03 06:19:13'),
	(200, 21, 'Oppo', '2019-10-03 06:19:13', '2019-10-03 06:19:13'),
	(201, 21, 'EStore', '2019-10-03 06:19:13', '2019-10-03 06:19:13'),
	(202, 21, 'Infinix', '2019-10-03 06:19:13', '2019-10-03 06:19:13'),
	(203, 21, 'Apple', '2019-10-03 06:19:13', '2019-10-03 06:19:13'),
	(243, 33, '1 GB', '2019-10-13 05:30:39', '2019-10-13 05:30:39'),
	(244, 33, '2 GB', '2019-10-13 05:30:39', '2019-10-13 05:30:39'),
	(245, 33, '3 GB', '2019-10-13 05:30:39', '2019-10-13 05:30:39'),
	(253, 32, 'demo 1', '2019-10-13 09:18:04', '2019-10-13 09:18:04'),
	(254, 32, 'demo 2', '2019-10-13 09:18:04', '2019-10-13 09:18:04'),
	(255, 32, 'demo 3', '2019-10-13 09:18:04', '2019-10-13 09:18:04');
/*!40000 ALTER TABLE `attribute_options` ENABLE KEYS */;

-- Dumping structure for table ebaskat.banners
CREATE TABLE IF NOT EXISTS `banners` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `photo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `link` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` enum('TopFlase','ThreePromotional','SliderThree','ErrorBanner','popupBanner') NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.banners: ~4 rows (approximately)
/*!40000 ALTER TABLE `banners` DISABLE KEYS */;
INSERT INTO `banners` (`id`, `photo`, `link`, `type`) VALUES
	(1, '162178607833.jpg', '/', 'ErrorBanner'),
	(2, '162179007722.jpg', '0', 'popupBanner'),
	(14, '162179570233.jpg', '/', 'TopFlase'),
	(15, '162179571222.jpg', '/', 'SliderThree'),
	(16, '162179572022.jpg', '/', 'ThreePromotional');
/*!40000 ALTER TABLE `banners` ENABLE KEYS */;

-- Dumping structure for table ebaskat.blogs
CREATE TABLE IF NOT EXISTS `blogs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(191) NOT NULL,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `views` int(11) NOT NULL DEFAULT '0',
  `status` tinyint(4) NOT NULL DEFAULT '1',
  `meta_tag` text COLLATE utf8mb4_unicode_ci,
  `meta_description` text COLLATE utf8mb4_unicode_ci,
  `tags` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.blogs: ~14 rows (approximately)
/*!40000 ALTER TABLE `blogs` DISABLE KEYS */;
INSERT INTO `blogs` (`id`, `category_id`, `title`, `details`, `photo`, `source`, `views`, `status`, `meta_tag`, `meta_description`, `tags`, `created_at`) VALUES
	(9, 2, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a \r\ndrifting tone like that of a not-quite-tuned-in radio station \r\n                                        rises and for a while drowns out\r\n the patter. These are the sounds encountered by NASA’s Cassini \r\nspacecraft as it dove \r\n                                        the gap between Saturn and its \r\ninnermost ring on April 26, the first of 22 such encounters before it \r\nwill plunge into \r\n                                        atmosphere in September. What \r\nCassini did not detect were many of the collisions of dust particles \r\nhitting the spacecraft\r\n                                        it passed through the plane of \r\nthe ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify">How its Works ?</h3>\r\n                                    <p align="justify">\r\n                                        MIAMI — For decades, South \r\nFlorida schoolchildren and adults fascinated by far-off galaxies, \r\nearthly ecosystems, the proper\r\n                                        ties of light and sound and \r\nother wonders of science had only a quaint, antiquated museum here in \r\nwhich to explore their \r\n                                        interests. Now, with the \r\nlong-delayed opening of a vast new science museum downtown set for \r\nMonday, visitors will be able \r\n                                        to stand underneath a suspended,\r\n 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, \r\nmahi mahi, devil\r\n                                        rays and other creatures through\r\n a 60,000-pound oculus. <br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of\r\n a huge cocktail glass. And that’s just one of many\r\n                                        attractions and exhibits. \r\nOfficials at the $305 million Phillip and Patricia Frost Museum of \r\nScience promise that it will be a \r\n                                        vivid expression of modern \r\nscientific inquiry and exposition. Its opening follows a series of \r\nsetbacks and lawsuits and a \r\n                                        scramble to finish the \r\n250,000-square-foot structure. At one point, the project ran \r\nprecariously short of money. The museum\r\n                                        high-profile opening is \r\nespecially significant in a state s <br></p><p align="justify"><br></p><h3 align="justify">Top 5 reason to choose us</h3>\r\n                                    <p align="justify">\r\n                                        Mauna Loa, the biggest volcano \r\non Earth — and one of the most active — covers half the Island of \r\nHawaii. Just 35 miles to the \r\n                                        northeast, Mauna Kea, known to \r\nnative Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea \r\nlevel. To them it repre\r\n                                        sents a spiritual connection \r\nbetween our planet and the heavens above. These volcanoes, which have \r\nbeguiled millions of \r\n                                        tourists visiting the Hawaiian \r\nislands, have also plagued scientists with a long-running mystery: If \r\nthey are so close together, \r\n                                        how did they develop in two \r\nparallel tracks along the Hawaiian-Emperor chain formed over the same \r\nhot spot in the Pacific \r\n                                        Ocean — and why are their \r\nchemical compositions so different? "We knew this was related to \r\nsomething much deeper,\r\n                                        but we couldn’t see what,” said \r\nTim Jones.\r\n                                    </p>', '15542700986-min.jpg', 'www.geniusocean.com', 36, 1, 'b1,b2,b3', 'Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level.', 'Business,Research,Mechanical,Process,Innovation,Engineering', '2018-02-06 15:53:41'),
	(10, 3, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a \r\ndrifting tone like that of a not-quite-tuned-in radio station \r\n                                        rises and for a while drowns out\r\n the patter. These are the sounds encountered by NASA’s Cassini \r\nspacecraft as it dove \r\n                                        the gap between Saturn and its \r\ninnermost ring on April 26, the first of 22 such encounters before it \r\nwill plunge into \r\n                                        atmosphere in September. What \r\nCassini did not detect were many of the collisions of dust particles \r\nhitting the spacecraft\r\n                                        it passed through the plane of \r\nthe ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify">How its Works ?</h3>\r\n                                    <p align="justify">\r\n                                        MIAMI — For decades, South \r\nFlorida schoolchildren and adults fascinated by far-off galaxies, \r\nearthly ecosystems, the proper\r\n                                        ties of light and sound and \r\nother wonders of science had only a quaint, antiquated museum here in \r\nwhich to explore their \r\n                                        interests. Now, with the \r\nlong-delayed opening of a vast new science museum downtown set for \r\nMonday, visitors will be able \r\n                                        to stand underneath a suspended,\r\n 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, \r\nmahi mahi, devil\r\n                                        rays and other creatures through\r\n a 60,000-pound oculus. <br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of\r\n a huge cocktail glass. And that’s just one of many\r\n                                        attractions and exhibits. \r\nOfficials at the $305 million Phillip and Patricia Frost Museum of \r\nScience promise that it will be a \r\n                                        vivid expression of modern \r\nscientific inquiry and exposition. Its opening follows a series of \r\nsetbacks and lawsuits and a \r\n                                        scramble to finish the \r\n250,000-square-foot structure. At one point, the project ran \r\nprecariously short of money. The museum\r\n                                        high-profile opening is \r\nespecially significant in a state s <br></p><p align="justify"><br></p><h3 align="justify">Top 5 reason to choose us</h3>\r\n                                    <p align="justify">\r\n                                        Mauna Loa, the biggest volcano \r\non Earth — and one of the most active — covers half the Island of \r\nHawaii. Just 35 miles to the \r\n                                        northeast, Mauna Kea, known to \r\nnative Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea \r\nlevel. To them it repre\r\n                                        sents a spiritual connection \r\nbetween our planet and the heavens above. These volcanoes, which have \r\nbeguiled millions of \r\n                                        tourists visiting the Hawaiian \r\nislands, have also plagued scientists with a long-running mystery: If \r\nthey are so close together, \r\n                                        how did they develop in two \r\nparallel tracks along the Hawaiian-Emperor chain formed over the same \r\nhot spot in the Pacific \r\n                                        Ocean — and why are their \r\nchemical compositions so different? "We knew this was related to \r\nsomething much deeper,\r\n                                        but we couldn’t see what,” said \r\nTim Jones.\r\n                                    </p>', '15542700902-min.jpg', 'www.geniusocean.com', 14, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2018-03-06 15:54:21'),
	(12, 2, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a \r\ndrifting tone like that of a not-quite-tuned-in radio station \r\n                                        rises and for a while drowns out\r\n the patter. These are the sounds encountered by NASA’s Cassini \r\nspacecraft as it dove \r\n                                        the gap between Saturn and its \r\ninnermost ring on April 26, the first of 22 such encounters before it \r\nwill plunge into \r\n                                        atmosphere in September. What \r\nCassini did not detect were many of the collisions of dust particles \r\nhitting the spacecraft\r\n                                        it passed through the plane of \r\nthe ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify">How its Works ?</h3>\r\n                                    <p align="justify">\r\n                                        MIAMI — For decades, South \r\nFlorida schoolchildren and adults fascinated by far-off galaxies, \r\nearthly ecosystems, the proper\r\n                                        ties of light and sound and \r\nother wonders of science had only a quaint, antiquated museum here in \r\nwhich to explore their \r\n                                        interests. Now, with the \r\nlong-delayed opening of a vast new science museum downtown set for \r\nMonday, visitors will be able \r\n                                        to stand underneath a suspended,\r\n 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, \r\nmahi mahi, devil\r\n                                        rays and other creatures through\r\n a 60,000-pound oculus. <br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of\r\n a huge cocktail glass. And that’s just one of many\r\n                                        attractions and exhibits. \r\nOfficials at the $305 million Phillip and Patricia Frost Museum of \r\nScience promise that it will be a \r\n                                        vivid expression of modern \r\nscientific inquiry and exposition. Its opening follows a series of \r\nsetbacks and lawsuits and a \r\n                                        scramble to finish the \r\n250,000-square-foot structure. At one point, the project ran \r\nprecariously short of money. The museum\r\n                                        high-profile opening is \r\nespecially significant in a state s <br></p><p align="justify"><br></p><h3 align="justify">Top 5 reason to choose us</h3>\r\n                                    <p align="justify">\r\n                                        Mauna Loa, the biggest volcano \r\non Earth — and one of the most active — covers half the Island of \r\nHawaii. Just 35 miles to the \r\n                                        northeast, Mauna Kea, known to \r\nnative Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea \r\nlevel. To them it repre\r\n                                        sents a spiritual connection \r\nbetween our planet and the heavens above. These volcanoes, which have \r\nbeguiled millions of \r\n                                        tourists visiting the Hawaiian \r\nislands, have also plagued scientists with a long-running mystery: If \r\nthey are so close together, \r\n                                        how did they develop in two \r\nparallel tracks along the Hawaiian-Emperor chain formed over the same \r\nhot spot in the Pacific \r\n                                        Ocean — and why are their \r\nchemical compositions so different? "We knew this was related to \r\nsomething much deeper,\r\n                                        but we couldn’t see what,” said \r\nTim Jones.\r\n                                    </p>', '15542700821-min.jpg', 'www.geniusocean.com', 19, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2018-04-07 04:04:20'),
	(13, 3, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a \r\ndrifting tone like that of a not-quite-tuned-in radio station \r\n                                        rises and for a while drowns out\r\n the patter. These are the sounds encountered by NASA’s Cassini \r\nspacecraft as it dove \r\n                                        the gap between Saturn and its \r\ninnermost ring on April 26, the first of 22 such encounters before it \r\nwill plunge into \r\n                                        atmosphere in September. What \r\nCassini did not detect were many of the collisions of dust particles \r\nhitting the spacecraft\r\n                                        it passed through the plane of \r\nthe ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify">How its Works ?</h3>\r\n                                    <p align="justify">\r\n                                        MIAMI — For decades, South \r\nFlorida schoolchildren and adults fascinated by far-off galaxies, \r\nearthly ecosystems, the proper\r\n                                        ties of light and sound and \r\nother wonders of science had only a quaint, antiquated museum here in \r\nwhich to explore their \r\n                                        interests. Now, with the \r\nlong-delayed opening of a vast new science museum downtown set for \r\nMonday, visitors will be able \r\n                                        to stand underneath a suspended,\r\n 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, \r\nmahi mahi, devil\r\n                                        rays and other creatures through\r\n a 60,000-pound oculus. <br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of\r\n a huge cocktail glass. And that’s just one of many\r\n                                        attractions and exhibits. \r\nOfficials at the $305 million Phillip and Patricia Frost Museum of \r\nScience promise that it will be a \r\n                                        vivid expression of modern \r\nscientific inquiry and exposition. Its opening follows a series of \r\nsetbacks and lawsuits and a \r\n                                        scramble to finish the \r\n250,000-square-foot structure. At one point, the project ran \r\nprecariously short of money. The museum\r\n                                        high-profile opening is \r\nespecially significant in a state s <br></p><p align="justify"><br></p><h3 align="justify">Top 5 reason to choose us</h3>\r\n                                    <p align="justify">\r\n                                        Mauna Loa, the biggest volcano \r\non Earth — and one of the most active — covers half the Island of \r\nHawaii. Just 35 miles to the \r\n                                        northeast, Mauna Kea, known to \r\nnative Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea \r\nlevel. To them it repre\r\n                                        sents a spiritual connection \r\nbetween our planet and the heavens above. These volcanoes, which have \r\nbeguiled millions of \r\n                                        tourists visiting the Hawaiian \r\nislands, have also plagued scientists with a long-running mystery: If \r\nthey are so close together, \r\n                                        how did they develop in two \r\nparallel tracks along the Hawaiian-Emperor chain formed over the same \r\nhot spot in the Pacific \r\n                                        Ocean — and why are their \r\nchemical compositions so different? "We knew this was related to \r\nsomething much deeper,\r\n                                        but we couldn’t see what,” said \r\nTim Jones.\r\n                                    </p>', '15542700676-min.jpg', 'www.geniusocean.com', 57, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2018-05-07 04:04:36'),
	(14, 2, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542700595-min.jpg', 'www.geniusocean.com', 3, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2018-06-03 12:02:30'),
	(15, 3, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542700464-min.jpg', 'www.geniusocean.com', 6, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2018-07-03 12:02:53'),
	(16, 2, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542700383-min.jpg', 'www.geniusocean.com', 5, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2018-08-03 12:03:14'),
	(17, 3, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542700322-min.jpg', 'www.geniusocean.com', 50, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2019-01-03 12:03:37'),
	(18, 2, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542700251-min.jpg', 'www.geniusocean.com', 151, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2019-01-03 12:03:59'),
	(20, 2, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542699136-min.jpg', 'www.geniusocean.com', 10, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2018-08-03 12:03:14'),
	(21, 3, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542699045-min.jpg', 'www.geniusocean.com', 36, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2019-01-03 12:03:37'),
	(22, 2, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542698954-min.jpg', 'www.geniusocean.com', 70, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2019-01-03 12:03:59'),
	(23, 7, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542698893-min.jpg', 'www.geniusocean.com', 5, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2018-08-03 12:03:14'),
	(24, 3, 'How to design effective arts?', '<div align="justify">The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by NASA’s Cassini spacecraft as it dove the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into atmosphere in September. What Cassini did not detect were many of the collisions of dust particles hitting the spacecraft it passed through the plane of the ringsen the charged particles oscillate in unison.<br><br></div><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">How its Works ?</h3><p align="justify">MIAMI — For decades, South Florida schoolchildren and adults fascinated by far-off galaxies, earthly ecosystems, the proper ties of light and sound and other wonders of science had only a quaint, antiquated museum here in which to explore their interests. Now, with the long-delayed opening of a vast new science museum downtown set for Monday, visitors will be able to stand underneath a suspended, 500,000-gallon aquarium tank and gaze at hammerhead and tiger sharks, mahi mahi, devil rays and other creatures through a 60,000-pound oculus.&nbsp;<br></p><p align="justify">Lens that will give the impression of seeing the fish from the bottom of a huge cocktail glass. And that’s just one of many attractions and exhibits. Officials at the $305 million Phillip and Patricia Frost Museum of Science promise that it will be a vivid expression of modern scientific inquiry and exposition. Its opening follows a series of setbacks and lawsuits and a scramble to finish the 250,000-square-foot structure. At one point, the project ran precariously short of money. The museum high-profile opening is especially significant in a state s&nbsp;<br></p><p align="justify"><br></p><h3 align="justify" style="font-family: " helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" color:="" rgb(51,="" 51,="" 51);"="">Top 5 reason to choose us</h3><p align="justify">Mauna Loa, the biggest volcano on Earth — and one of the most active — covers half the Island of Hawaii. Just 35 miles to the northeast, Mauna Kea, known to native Hawaiians as Mauna a Wakea, rises nearly 14,000 feet above sea level. To them it repre sents a spiritual connection between our planet and the heavens above. These volcanoes, which have beguiled millions of tourists visiting the Hawaiian islands, have also plagued scientists with a long-running mystery: If they are so close together, how did they develop in two parallel tracks along the Hawaiian-Emperor chain formed over the same hot spot in the Pacific Ocean — and why are their chemical compositions so different? "We knew this was related to something much deeper, but we couldn’t see what,” said Tim Jones.</p>', '15542698832-min.jpg', 'www.geniusocean.com', 34, 1, NULL, NULL, 'Business,Research,Mechanical,Process,Innovation,Engineering', '2019-01-03 12:03:37');
/*!40000 ALTER TABLE `blogs` ENABLE KEYS */;

-- Dumping structure for table ebaskat.blog_categories
CREATE TABLE IF NOT EXISTS `blog_categories` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.blog_categories: ~7 rows (approximately)
/*!40000 ALTER TABLE `blog_categories` DISABLE KEYS */;
INSERT INTO `blog_categories` (`id`, `name`, `slug`) VALUES
	(2, 'Oil & gas', 'oil-and-gas'),
	(3, 'Manufacturing', 'manufacturing'),
	(4, 'Chemical Research', 'chemical_research'),
	(5, 'Agriculture', 'agriculture'),
	(6, 'Mechanical', 'mechanical'),
	(7, 'Entrepreneurs', 'entrepreneurs'),
	(8, 'Technology', 'technology');
/*!40000 ALTER TABLE `blog_categories` ENABLE KEYS */;

-- Dumping structure for table ebaskat.categories
CREATE TABLE IF NOT EXISTS `categories` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `photo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.categories: ~15 rows (approximately)
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` (`id`, `name`, `slug`, `status`, `photo`, `is_featured`, `image`) VALUES
	(4, 'Electronic', 'electric', 1, '1557807287light.png', 1, '1568709131f6.jpg'),
	(5, 'Fashion & Beauty', 'fashion-and-Beauty', 1, '1557807279fashion.png', 1, '1568709123f1.jpg'),
	(6, 'Camera & Photo', 'camera-and-photo', 1, '1557807264camera.png', 1, '1568709110f2.jpg'),
	(7, 'Smart Phone & Table', 'smart-phone-and-table', 1, '1557377810mobile.png', 1, '1568709597f4.jpg'),
	(8, 'Sport & Outdoor', 'sport-and-Outdoor', 1, '1557807258sports.png', 1, '1568709577f8.jpg'),
	(9, 'Jewelry & Watches', 'jewelry-and-watches', 1, '1557807252furniture.png', 1, '1568709077f7.jpg'),
	(10, 'Health & Beauty', 'health-and-beauty', 1, '1557807228trends.png', 1, '1568709067f3.jpg'),
	(11, 'Books & Office', 'books-and-office', 1, '1557377917bags.png', 1, '1568709050f8.jpg'),
	(12, 'Toys & Hobbies', 'toys-and-hobbies', 1, '1557807214sports.png', 1, '1568709042f9.jpg'),
	(13, 'Books', 'books', 1, '1557807208bags.png', 1, '1568709037f10.jpg'),
	(15, 'Automobiles & Motorcycles', 'automobiles-and-motorcycles', 1, '1568708648motor.car.png', 1, '1568709031f11.jpg'),
	(16, 'Home decoration & Appliance', 'Home-decoration-and-Appliance', 1, '1568708757home.png', 1, '1568709027f12.jpg'),
	(17, 'Portable & Personal Electronics', 'portable-and-personal-electronics', 1, '1568878538electronic.jpg', 0, NULL),
	(18, 'Outdoor, Recreation & Fitness', 'Outdoor-Recreation-and-Fitness', 1, '1568878596home.jpg', 0, NULL),
	(19, 'Surveillance Safety & Security', 'Surveillance-Safety-and-Security', 1, NULL, 0, NULL);
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;

-- Dumping structure for table ebaskat.childcategories
CREATE TABLE IF NOT EXISTS `childcategories` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `subcategory_id` int(191) NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.childcategories: ~16 rows (approximately)
/*!40000 ALTER TABLE `childcategories` DISABLE KEYS */;
INSERT INTO `childcategories` (`id`, `subcategory_id`, `name`, `slug`, `status`) VALUES
	(1, 2, 'LCD TV', 'lcd-tv', 1),
	(2, 2, 'LED TV', 'led-tv', 1),
	(3, 2, 'Curved TV', 'curved-tv', 1),
	(4, 2, 'Plasma TV', 'plasma-tv', 1),
	(5, 3, 'Top Freezer', 'top-freezer', 1),
	(6, 3, 'Side-by-Side', 'side-by-side', 1),
	(7, 3, 'Counter-Depth', 'counter-depth', 1),
	(8, 3, 'Mini Fridge', 'mini-fridge', 1),
	(9, 4, 'Front Loading', 'front-loading', 1),
	(10, 4, 'Top Loading', 'top-loading', 1),
	(11, 4, 'Washer Dryer Combo', 'washer-dryer-combo', 1),
	(12, 4, 'Laundry Center', 'laundry-center', 1),
	(13, 5, 'Central Air', 'central-air', 1),
	(14, 5, 'Window Air', 'window-air', 1),
	(15, 5, 'Portable Air', 'portable-air', 1),
	(16, 5, 'Hybrid Air', 'hybrid-air', 1);
/*!40000 ALTER TABLE `childcategories` ENABLE KEYS */;

-- Dumping structure for table ebaskat.comments
CREATE TABLE IF NOT EXISTS `comments` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) unsigned NOT NULL,
  `product_id` int(191) unsigned NOT NULL,
  `text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.comments: ~0 rows (approximately)
/*!40000 ALTER TABLE `comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `comments` ENABLE KEYS */;

-- Dumping structure for table ebaskat.conversations
CREATE TABLE IF NOT EXISTS `conversations` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `subject` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sent_user` int(191) NOT NULL,
  `recieved_user` int(191) NOT NULL,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.conversations: ~0 rows (approximately)
/*!40000 ALTER TABLE `conversations` DISABLE KEYS */;
/*!40000 ALTER TABLE `conversations` ENABLE KEYS */;

-- Dumping structure for table ebaskat.counters
CREATE TABLE IF NOT EXISTS `counters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` enum('referral','browser') NOT NULL DEFAULT 'referral',
  `referral` varchar(255) DEFAULT NULL,
  `total_count` int(11) NOT NULL DEFAULT '0',
  `todays_count` int(11) NOT NULL DEFAULT '0',
  `today` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.counters: ~18 rows (approximately)
/*!40000 ALTER TABLE `counters` DISABLE KEYS */;
INSERT INTO `counters` (`id`, `type`, `referral`, `total_count`, `todays_count`, `today`) VALUES
	(1, 'referral', 'www.facebook.com', 5, 0, NULL),
	(2, 'referral', 'geniusocean.com', 2, 0, NULL),
	(3, 'browser', 'Windows 10', 1034, 0, NULL),
	(4, 'browser', 'Linux', 221, 0, NULL),
	(5, 'browser', 'Unknown OS Platform', 384, 0, NULL),
	(6, 'browser', 'Windows 7', 415, 0, NULL),
	(7, 'referral', 'yandex.ru', 15, 0, NULL),
	(8, 'browser', 'Windows 8.1', 536, 0, NULL),
	(9, 'referral', 'www.google.com', 6, 0, NULL),
	(10, 'browser', 'Android', 355, 0, NULL),
	(11, 'browser', 'Mac OS X', 502, 0, NULL),
	(12, 'referral', 'l.facebook.com', 1, 0, NULL),
	(13, 'referral', 'codecanyon.net', 6, 0, NULL),
	(14, 'browser', 'Windows XP', 2, 0, NULL),
	(15, 'browser', 'Windows 8', 1, 0, NULL),
	(16, 'browser', 'iPad', 4, 0, NULL),
	(17, 'browser', 'Ubuntu', 1, 0, NULL),
	(18, 'browser', 'iPhone', 4, 0, NULL);
/*!40000 ALTER TABLE `counters` ENABLE KEYS */;

-- Dumping structure for table ebaskat.countries
CREATE TABLE IF NOT EXISTS `countries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `country_code` varchar(2) NOT NULL DEFAULT '',
  `country_name` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=247 DEFAULT CHARSET=utf8;

-- Dumping data for table ebaskat.countries: 246 rows
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` (`id`, `country_code`, `country_name`) VALUES
	(1, 'AF', 'Afghanistan'),
	(2, 'AL', 'Albania'),
	(3, 'DZ', 'Algeria'),
	(4, 'DS', 'American Samoa'),
	(5, 'AD', 'Andorra'),
	(6, 'AO', 'Angola'),
	(7, 'AI', 'Anguilla'),
	(8, 'AQ', 'Antarctica'),
	(9, 'AG', 'Antigua and Barbuda'),
	(10, 'AR', 'Argentina'),
	(11, 'AM', 'Armenia'),
	(12, 'AW', 'Aruba'),
	(13, 'AU', 'Australia'),
	(14, 'AT', 'Austria'),
	(15, 'AZ', 'Azerbaijan'),
	(16, 'BS', 'Bahamas'),
	(17, 'BH', 'Bahrain'),
	(18, 'BD', 'Bangladesh'),
	(19, 'BB', 'Barbados'),
	(20, 'BY', 'Belarus'),
	(21, 'BE', 'Belgium'),
	(22, 'BZ', 'Belize'),
	(23, 'BJ', 'Benin'),
	(24, 'BM', 'Bermuda'),
	(25, 'BT', 'Bhutan'),
	(26, 'BO', 'Bolivia'),
	(27, 'BA', 'Bosnia and Herzegovina'),
	(28, 'BW', 'Botswana'),
	(29, 'BV', 'Bouvet Island'),
	(30, 'BR', 'Brazil'),
	(31, 'IO', 'British Indian Ocean Territory'),
	(32, 'BN', 'Brunei Darussalam'),
	(33, 'BG', 'Bulgaria'),
	(34, 'BF', 'Burkina Faso'),
	(35, 'BI', 'Burundi'),
	(36, 'KH', 'Cambodia'),
	(37, 'CM', 'Cameroon'),
	(38, 'CA', 'Canada'),
	(39, 'CV', 'Cape Verde'),
	(40, 'KY', 'Cayman Islands'),
	(41, 'CF', 'Central African Republic'),
	(42, 'TD', 'Chad'),
	(43, 'CL', 'Chile'),
	(44, 'CN', 'China'),
	(45, 'CX', 'Christmas Island'),
	(46, 'CC', 'Cocos (Keeling) Islands'),
	(47, 'CO', 'Colombia'),
	(48, 'KM', 'Comoros'),
	(49, 'CD', 'Democratic Republic of the Congo'),
	(50, 'CG', 'Republic of Congo'),
	(51, 'CK', 'Cook Islands'),
	(52, 'CR', 'Costa Rica'),
	(53, 'HR', 'Croatia (Hrvatska)'),
	(54, 'CU', 'Cuba'),
	(55, 'CY', 'Cyprus'),
	(56, 'CZ', 'Czech Republic'),
	(57, 'DK', 'Denmark'),
	(58, 'DJ', 'Djibouti'),
	(59, 'DM', 'Dominica'),
	(60, 'DO', 'Dominican Republic'),
	(61, 'TP', 'East Timor'),
	(62, 'EC', 'Ecuador'),
	(63, 'EG', 'Egypt'),
	(64, 'SV', 'El Salvador'),
	(65, 'GQ', 'Equatorial Guinea'),
	(66, 'ER', 'Eritrea'),
	(67, 'EE', 'Estonia'),
	(68, 'ET', 'Ethiopia'),
	(69, 'FK', 'Falkland Islands (Malvinas)'),
	(70, 'FO', 'Faroe Islands'),
	(71, 'FJ', 'Fiji'),
	(72, 'FI', 'Finland'),
	(73, 'FR', 'France'),
	(74, 'FX', 'France, Metropolitan'),
	(75, 'GF', 'French Guiana'),
	(76, 'PF', 'French Polynesia'),
	(77, 'TF', 'French Southern Territories'),
	(78, 'GA', 'Gabon'),
	(79, 'GM', 'Gambia'),
	(80, 'GE', 'Georgia'),
	(81, 'DE', 'Germany'),
	(82, 'GH', 'Ghana'),
	(83, 'GI', 'Gibraltar'),
	(84, 'GK', 'Guernsey'),
	(85, 'GR', 'Greece'),
	(86, 'GL', 'Greenland'),
	(87, 'GD', 'Grenada'),
	(88, 'GP', 'Guadeloupe'),
	(89, 'GU', 'Guam'),
	(90, 'GT', 'Guatemala'),
	(91, 'GN', 'Guinea'),
	(92, 'GW', 'Guinea-Bissau'),
	(93, 'GY', 'Guyana'),
	(94, 'HT', 'Haiti'),
	(95, 'HM', 'Heard and Mc Donald Islands'),
	(96, 'HN', 'Honduras'),
	(97, 'HK', 'Hong Kong'),
	(98, 'HU', 'Hungary'),
	(99, 'IS', 'Iceland'),
	(100, 'IN', 'India'),
	(101, 'IM', 'Isle of Man'),
	(102, 'ID', 'Indonesia'),
	(103, 'IR', 'Iran (Islamic Republic of)'),
	(104, 'IQ', 'Iraq'),
	(105, 'IE', 'Ireland'),
	(106, 'IL', 'Israel'),
	(107, 'IT', 'Italy'),
	(108, 'CI', 'Ivory Coast'),
	(109, 'JE', 'Jersey'),
	(110, 'JM', 'Jamaica'),
	(111, 'JP', 'Japan'),
	(112, 'JO', 'Jordan'),
	(113, 'KZ', 'Kazakhstan'),
	(114, 'KE', 'Kenya'),
	(115, 'KI', 'Kiribati'),
	(116, 'KP', 'Korea, Democratic People\'s Republic of'),
	(117, 'KR', 'Korea, Republic of'),
	(118, 'XK', 'Kosovo'),
	(119, 'KW', 'Kuwait'),
	(120, 'KG', 'Kyrgyzstan'),
	(121, 'LA', 'Lao People\'s Democratic Republic'),
	(122, 'LV', 'Latvia'),
	(123, 'LB', 'Lebanon'),
	(124, 'LS', 'Lesotho'),
	(125, 'LR', 'Liberia'),
	(126, 'LY', 'Libyan Arab Jamahiriya'),
	(127, 'LI', 'Liechtenstein'),
	(128, 'LT', 'Lithuania'),
	(129, 'LU', 'Luxembourg'),
	(130, 'MO', 'Macau'),
	(131, 'MK', 'North Macedonia'),
	(132, 'MG', 'Madagascar'),
	(133, 'MW', 'Malawi'),
	(134, 'MY', 'Malaysia'),
	(135, 'MV', 'Maldives'),
	(136, 'ML', 'Mali'),
	(137, 'MT', 'Malta'),
	(138, 'MH', 'Marshall Islands'),
	(139, 'MQ', 'Martinique'),
	(140, 'MR', 'Mauritania'),
	(141, 'MU', 'Mauritius'),
	(142, 'TY', 'Mayotte'),
	(143, 'MX', 'Mexico'),
	(144, 'FM', 'Micronesia, Federated States of'),
	(145, 'MD', 'Moldova, Republic of'),
	(146, 'MC', 'Monaco'),
	(147, 'MN', 'Mongolia'),
	(148, 'ME', 'Montenegro'),
	(149, 'MS', 'Montserrat'),
	(150, 'MA', 'Morocco'),
	(151, 'MZ', 'Mozambique'),
	(152, 'MM', 'Myanmar'),
	(153, 'NA', 'Namibia'),
	(154, 'NR', 'Nauru'),
	(155, 'NP', 'Nepal'),
	(156, 'NL', 'Netherlands'),
	(157, 'AN', 'Netherlands Antilles'),
	(158, 'NC', 'New Caledonia'),
	(159, 'NZ', 'New Zealand'),
	(160, 'NI', 'Nicaragua'),
	(161, 'NE', 'Niger'),
	(162, 'NG', 'Nigeria'),
	(163, 'NU', 'Niue'),
	(164, 'NF', 'Norfolk Island'),
	(165, 'MP', 'Northern Mariana Islands'),
	(166, 'NO', 'Norway'),
	(167, 'OM', 'Oman'),
	(168, 'PK', 'Pakistan'),
	(169, 'PW', 'Palau'),
	(170, 'PS', 'Palestine'),
	(171, 'PA', 'Panama'),
	(172, 'PG', 'Papua New Guinea'),
	(173, 'PY', 'Paraguay'),
	(174, 'PE', 'Peru'),
	(175, 'PH', 'Philippines'),
	(176, 'PN', 'Pitcairn'),
	(177, 'PL', 'Poland'),
	(178, 'PT', 'Portugal'),
	(179, 'PR', 'Puerto Rico'),
	(180, 'QA', 'Qatar'),
	(181, 'RE', 'Reunion'),
	(182, 'RO', 'Romania'),
	(183, 'RU', 'Russian Federation'),
	(184, 'RW', 'Rwanda'),
	(185, 'KN', 'Saint Kitts and Nevis'),
	(186, 'LC', 'Saint Lucia'),
	(187, 'VC', 'Saint Vincent and the Grenadines'),
	(188, 'WS', 'Samoa'),
	(189, 'SM', 'San Marino'),
	(190, 'ST', 'Sao Tome and Principe'),
	(191, 'SA', 'Saudi Arabia'),
	(192, 'SN', 'Senegal'),
	(193, 'RS', 'Serbia'),
	(194, 'SC', 'Seychelles'),
	(195, 'SL', 'Sierra Leone'),
	(196, 'SG', 'Singapore'),
	(197, 'SK', 'Slovakia'),
	(198, 'SI', 'Slovenia'),
	(199, 'SB', 'Solomon Islands'),
	(200, 'SO', 'Somalia'),
	(201, 'ZA', 'South Africa'),
	(202, 'GS', 'South Georgia South Sandwich Islands'),
	(203, 'SS', 'South Sudan'),
	(204, 'ES', 'Spain'),
	(205, 'LK', 'Sri Lanka'),
	(206, 'SH', 'St. Helena'),
	(207, 'PM', 'St. Pierre and Miquelon'),
	(208, 'SD', 'Sudan'),
	(209, 'SR', 'Suriname'),
	(210, 'SJ', 'Svalbard and Jan Mayen Islands'),
	(211, 'SZ', 'Swaziland'),
	(212, 'SE', 'Sweden'),
	(213, 'CH', 'Switzerland'),
	(214, 'SY', 'Syrian Arab Republic'),
	(215, 'TW', 'Taiwan'),
	(216, 'TJ', 'Tajikistan'),
	(217, 'TZ', 'Tanzania, United Republic of'),
	(218, 'TH', 'Thailand'),
	(219, 'TG', 'Togo'),
	(220, 'TK', 'Tokelau'),
	(221, 'TO', 'Tonga'),
	(222, 'TT', 'Trinidad and Tobago'),
	(223, 'TN', 'Tunisia'),
	(224, 'TR', 'Turkey'),
	(225, 'TM', 'Turkmenistan'),
	(226, 'TC', 'Turks and Caicos Islands'),
	(227, 'TV', 'Tuvalu'),
	(228, 'UG', 'Uganda'),
	(229, 'UA', 'Ukraine'),
	(230, 'AE', 'United Arab Emirates'),
	(231, 'GB', 'United Kingdom'),
	(232, 'US', 'United States'),
	(233, 'UM', 'United States minor outlying islands'),
	(234, 'UY', 'Uruguay'),
	(235, 'UZ', 'Uzbekistan'),
	(236, 'VU', 'Vanuatu'),
	(237, 'VA', 'Vatican City State'),
	(238, 'VE', 'Venezuela'),
	(239, 'VN', 'Vietnam'),
	(240, 'VG', 'Virgin Islands (British)'),
	(241, 'VI', 'Virgin Islands (U.S.)'),
	(242, 'WF', 'Wallis and Futuna Islands'),
	(243, 'EH', 'Western Sahara'),
	(244, 'YE', 'Yemen'),
	(245, 'ZM', 'Zambia'),
	(246, 'ZW', 'Zimbabwe');
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;

-- Dumping structure for table ebaskat.coupons
CREATE TABLE IF NOT EXISTS `coupons` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` tinyint(4) NOT NULL,
  `price` double NOT NULL,
  `times` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `used` int(191) unsigned NOT NULL DEFAULT '0',
  `status` tinyint(4) NOT NULL DEFAULT '1',
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.coupons: ~6 rows (approximately)
/*!40000 ALTER TABLE `coupons` DISABLE KEYS */;
INSERT INTO `coupons` (`id`, `code`, `type`, `price`, `times`, `used`, `status`, `start_date`, `end_date`) VALUES
	(1, 'eqwe', 1, 12.22, '990', 18, 1, '2019-01-15', '2026-08-20'),
	(2, 'sdsdsasd', 0, 11, NULL, 2, 1, '2019-05-23', '2022-05-26'),
	(3, 'werwd', 0, 22, NULL, 3, 1, '2019-05-23', '2023-06-08'),
	(4, 'asdasd', 1, 23.5, NULL, 1, 1, '2019-05-23', '2020-05-28'),
	(5, 'kopakopakopa', 0, 40, NULL, 3, 1, '2019-05-23', '2032-05-20'),
	(6, 'rererere', 1, 9, '665', 1, 1, '2019-05-23', '2022-05-26');
/*!40000 ALTER TABLE `coupons` ENABLE KEYS */;

-- Dumping structure for table ebaskat.currencies
CREATE TABLE IF NOT EXISTS `currencies` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sign` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` double NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.currencies: ~5 rows (approximately)
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
INSERT INTO `currencies` (`id`, `name`, `sign`, `value`, `is_default`) VALUES
	(1, 'USD', '$', 1, 1),
	(4, 'BDT', '৳', 84.63, 0),
	(6, 'EUR', '€', 0.89, 0),
	(8, 'INR', '₹', 68.95, 0),
	(9, 'NGN', '₦', 363.919, 0);
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;

-- Dumping structure for table ebaskat.email_templates
CREATE TABLE IF NOT EXISTS `email_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email_subject` mediumtext COLLATE utf8_unicode_ci,
  `email_body` longtext COLLATE utf8_unicode_ci,
  `status` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- Dumping data for table ebaskat.email_templates: ~5 rows (approximately)
/*!40000 ALTER TABLE `email_templates` DISABLE KEYS */;
INSERT INTO `email_templates` (`id`, `email_type`, `email_subject`, `email_body`, `status`) VALUES
	(1, 'new_order', 'Your Order Placed Successfully', '<p>Hello {customer_name},<br>Your Order Number is {order_number}<br>Your order has been placed successfully</p>', 1),
	(2, 'new_registration', 'Welcome To Royal Commerce', '<p>Hello {customer_name},<br>You have successfully registered to {website_title}, We wish you will have a wonderful experience using our service.</p><p>Thank You<br></p>', 1),
	(3, 'vendor_accept', 'Your Vendor Account Activated', '<p>Hello {customer_name},<br>Your Vendor Account Activated Successfully. Please Login to your account and build your own shop.</p><p>Thank You<br></p>', 1),
	(4, 'subscription_warning', 'Your subscrption plan will end after five days', '<p>Hello {customer_name},<br>Your subscription plan duration will end after five days. Please renew your plan otherwise all of your products will be deactivated.</p><p>Thank You<br></p>', 1),
	(5, 'vendor_verification', 'Request for verification.', '<p>Hello {customer_name},<br>You are requested verify your account. Please send us photo of your passport.</p><p>Thank You<br></p>', 1);
/*!40000 ALTER TABLE `email_templates` ENABLE KEYS */;

-- Dumping structure for table ebaskat.faqs
CREATE TABLE IF NOT EXISTS `faqs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.faqs: ~5 rows (approximately)
/*!40000 ALTER TABLE `faqs` DISABLE KEYS */;
INSERT INTO `faqs` (`id`, `title`, `details`, `status`) VALUES
	(1, 'Right my front it wound cause fully', '<span style="color: rgb(70, 85, 65); font-family: &quot;Open Sans&quot;, sans-serif; font-size: 16px;">Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.</span><br>', 1),
	(3, 'Man particular insensible celebrated', '<span style="color: rgb(70, 85, 65); font-family: &quot;Open Sans&quot;, sans-serif; font-size: 16px;">Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.</span><br>', 1),
	(4, 'Civilly why how end viewing related', '<span style="color: rgb(70, 85, 65); font-family: &quot;Open Sans&quot;, sans-serif; font-size: 16px;">Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.</span><br>', 0),
	(5, 'Six started far placing saw respect', '<span style="color: rgb(70, 85, 65); font-family: " open="" sans",="" sans-serif;="" font-size:="" 16px;"="">Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.</span><br>', 0),
	(6, 'She jointure goodness interest debat', '<div style="text-align: center;"><div style="text-align: center;"><br></div></div><div style="text-align: center;"><span style="color: rgb(70, 85, 65); font-family: " open="" sans",="" sans-serif;="" font-size:="" 16px;"="">Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.<br></span></div>', 0);
/*!40000 ALTER TABLE `faqs` ENABLE KEYS */;

-- Dumping structure for table ebaskat.favorite_sellers
CREATE TABLE IF NOT EXISTS `favorite_sellers` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL,
  `vendor_id` int(191) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.favorite_sellers: ~2 rows (approximately)
/*!40000 ALTER TABLE `favorite_sellers` DISABLE KEYS */;
INSERT INTO `favorite_sellers` (`id`, `user_id`, `vendor_id`) VALUES
	(1, 22, 13),
	(2, 48, 32);
/*!40000 ALTER TABLE `favorite_sellers` ENABLE KEYS */;

-- Dumping structure for table ebaskat.galleries
CREATE TABLE IF NOT EXISTS `galleries` (
  `id` int(191) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(191) unsigned NOT NULL,
  `photo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.galleries: ~0 rows (approximately)
/*!40000 ALTER TABLE `galleries` DISABLE KEYS */;
/*!40000 ALTER TABLE `galleries` ENABLE KEYS */;

-- Dumping structure for table ebaskat.generalsettings
CREATE TABLE IF NOT EXISTS `generalsettings` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `header_email` text COLLATE utf8mb4_unicode_ci,
  `header_phone` text COLLATE utf8mb4_unicode_ci,
  `is_language` tinyint(1) NOT NULL DEFAULT '1',
  `is_loader` tinyint(1) NOT NULL DEFAULT '1',
  `map_key` text COLLATE utf8mb4_unicode_ci,
  `is_contact` tinyint(1) NOT NULL DEFAULT '0',
  `is_faq` tinyint(1) NOT NULL DEFAULT '0',
  `guest_checkout` tinyint(1) NOT NULL DEFAULT '0',
  `stripe_check` tinyint(1) NOT NULL DEFAULT '0',
  `cod_check` tinyint(1) NOT NULL DEFAULT '0',
  `currency_format` tinyint(1) NOT NULL DEFAULT '0',
  `withdraw_fee` double NOT NULL DEFAULT '0',
  `withdraw_charge` double NOT NULL DEFAULT '0',
  `tax` double NOT NULL DEFAULT '0',
  `shipping_cost` double NOT NULL DEFAULT '0',
  `smtp_host` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `smtp_port` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `smtp_user` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `smtp_pass` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `from_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `from_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_smtp` tinyint(1) NOT NULL DEFAULT '0',
  `is_comment` tinyint(1) NOT NULL DEFAULT '1',
  `is_currency` tinyint(1) NOT NULL DEFAULT '1',
  `add_cart` text COLLATE utf8mb4_unicode_ci,
  `out_stock` text COLLATE utf8mb4_unicode_ci,
  `add_wish` text COLLATE utf8mb4_unicode_ci,
  `already_wish` text COLLATE utf8mb4_unicode_ci,
  `wish_remove` text COLLATE utf8mb4_unicode_ci,
  `add_compare` text COLLATE utf8mb4_unicode_ci,
  `already_compare` text COLLATE utf8mb4_unicode_ci,
  `compare_remove` text COLLATE utf8mb4_unicode_ci,
  `color_change` text COLLATE utf8mb4_unicode_ci,
  `coupon_found` text COLLATE utf8mb4_unicode_ci,
  `no_coupon` text COLLATE utf8mb4_unicode_ci,
  `already_coupon` text COLLATE utf8mb4_unicode_ci,
  `order_title` text COLLATE utf8mb4_unicode_ci,
  `order_text` text COLLATE utf8mb4_unicode_ci,
  `is_affilate` tinyint(1) NOT NULL DEFAULT '1',
  `affilate_charge` int(100) NOT NULL DEFAULT '0',
  `affilate_banner` text COLLATE utf8mb4_unicode_ci,
  `already_cart` text COLLATE utf8mb4_unicode_ci,
  `fixed_commission` double NOT NULL DEFAULT '0',
  `percentage_commission` double NOT NULL DEFAULT '0',
  `multiple_shipping` tinyint(1) NOT NULL DEFAULT '0',
  `multiple_packaging` tinyint(4) NOT NULL DEFAULT '0',
  `vendor_ship_info` tinyint(1) NOT NULL DEFAULT '0',
  `reg_vendor` tinyint(1) NOT NULL DEFAULT '0',
  `cod_text` text COLLATE utf8mb4_unicode_ci,
  `is_home` tinyint(1) NOT NULL DEFAULT '0',
  `is_verification_email` tinyint(1) NOT NULL DEFAULT '0',
  `wholesell` int(191) NOT NULL DEFAULT '0',
  `is_capcha` tinyint(1) NOT NULL DEFAULT '0',
  `user_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `vendor_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_secure` tinyint(1) NOT NULL DEFAULT '0',
  `is_report` tinyint(1) NOT NULL,
  `email_encryption` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `show_stock` tinyint(1) NOT NULL DEFAULT '0',
  `is_maintain` tinyint(1) NOT NULL DEFAULT '0',
  `maintain_text` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.generalsettings: 1 rows
/*!40000 ALTER TABLE `generalsettings` DISABLE KEYS */;
INSERT INTO `generalsettings` (`id`, `header_email`, `header_phone`, `is_language`, `is_loader`, `map_key`, `is_contact`, `is_faq`, `guest_checkout`, `stripe_check`, `cod_check`, `currency_format`, `withdraw_fee`, `withdraw_charge`, `tax`, `shipping_cost`, `smtp_host`, `smtp_port`, `smtp_user`, `smtp_pass`, `from_email`, `from_name`, `is_smtp`, `is_comment`, `is_currency`, `add_cart`, `out_stock`, `add_wish`, `already_wish`, `wish_remove`, `add_compare`, `already_compare`, `compare_remove`, `color_change`, `coupon_found`, `no_coupon`, `already_coupon`, `order_title`, `order_text`, `is_affilate`, `affilate_charge`, `affilate_banner`, `already_cart`, `fixed_commission`, `percentage_commission`, `multiple_shipping`, `multiple_packaging`, `vendor_ship_info`, `reg_vendor`, `cod_text`, `is_home`, `is_verification_email`, `wholesell`, `is_capcha`, `user_image`, `vendor_color`, `is_secure`, `is_report`, `email_encryption`, `show_stock`, `is_maintain`, `maintain_text`) VALUES
	(1, 'smtp', '0123 456789', 1, 1, 'AIzaSyB1GpE4qeoJ__70UZxvX9CTMUTZRZNHcu8', 1, 1, 0, 1, 1, 0, 0, 0, 0, 5, NULL, NULL, NULL, NULL, 'geniustest11@gmail.com', 'GeniusTest', 1, 1, 1, 'Successfully Added To Cart', 'Out Of Stock', 'Add To Wishlist', 'Already Added To Wishlist', 'Successfully Removed From The Wishlist', 'Successfully Added To Compare', 'Already Added To Compare', 'Successfully Removed From The Compare', 'Successfully Changed The Color', 'Coupon Found', 'No Coupon Found', 'Coupon Already Applied', 'THANK YOU FOR YOUR PURCHASE.', 'We\'ll email you an order confirmation with details and tracking info.', 1, 8, '15587771131554048228onepiece.jpeg', 'Already Added To Cart', 0, 0, 1, 1, 1, 1, 'Pay with cash upon delivery.', 0, 0, 6, 0, '1567655174profile.jpg', '#666666', 0, 1, NULL, 0, 0, '<div style="text-align: center;"><font size="5"><br></font></div><h1 style="text-align: center;"><font size="6">UNDER MAINTENANCE</font></h1>');
/*!40000 ALTER TABLE `generalsettings` ENABLE KEYS */;

-- Dumping structure for table ebaskat.languages
CREATE TABLE IF NOT EXISTS `languages` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `language` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.languages: ~3 rows (approximately)
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` (`id`, `is_default`, `language`, `file`) VALUES
	(1, 1, 'English', '1579926860LzpDa1Y7.json'),
	(2, 0, 'RTL English', '1579927527QjLMUGyj.json'),
	(3, 0, 'Bangla', 'C9SrGyeMuk.json');
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;

-- Dumping structure for table ebaskat.messages
CREATE TABLE IF NOT EXISTS `messages` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `conversation_id` int(191) NOT NULL,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sent_user` int(191) DEFAULT NULL,
  `recieved_user` int(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.messages: ~0 rows (approximately)
/*!40000 ALTER TABLE `messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `messages` ENABLE KEYS */;

-- Dumping structure for table ebaskat.migrations
CREATE TABLE IF NOT EXISTS `migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.migrations: ~6 rows (approximately)
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
	(1, '2021_04_20_155715_alter_table_vendor_information', 1),
	(2, '2021_04_26_195355_user_column_remove', 2),
	(3, '2021_04_25_120118_create_permissions_table', 3),
	(4, '2021_05_03_161942_create_admin_log_histories_table', 4),
	(5, '2021_05_03_103514_add_commission_to_products_table', 5),
	(6, '2021_05_19_130951_add_type_to_banners_table', 6);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;

-- Dumping structure for table ebaskat.notifications
CREATE TABLE IF NOT EXISTS `notifications` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `order_id` int(191) unsigned DEFAULT NULL,
  `user_id` int(191) DEFAULT NULL,
  `vendor_id` int(191) DEFAULT NULL,
  `product_id` int(191) DEFAULT NULL,
  `conversation_id` int(191) DEFAULT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.notifications: ~2 rows (approximately)
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
INSERT INTO `notifications` (`id`, `order_id`, `user_id`, `vendor_id`, `product_id`, `conversation_id`, `is_read`, `created_at`, `updated_at`) VALUES
	(14, 6, NULL, NULL, NULL, NULL, 1, '2021-05-03 18:45:04', '2021-05-06 17:57:58'),
	(15, NULL, 50, NULL, NULL, NULL, 1, '2021-05-10 20:09:17', '2021-05-16 15:48:16');
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;

-- Dumping structure for table ebaskat.orders
CREATE TABLE IF NOT EXISTS `orders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) DEFAULT NULL,
  `cart` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `shipping` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pickup_location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `totalQty` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pay_amount` float NOT NULL,
  `txnid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `charge_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_number` varchar(255) NOT NULL,
  `payment_status` varchar(255) NOT NULL,
  `customer_email` varchar(255) NOT NULL,
  `customer_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `customer_country` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_phone` varchar(255) NOT NULL,
  `customer_address` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `customer_city` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `customer_zip` varchar(255) DEFAULT NULL,
  `shipping_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_country` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `shipping_email` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_phone` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_address` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_city` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_zip` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `order_note` text CHARACTER SET utf8 COLLATE utf8_unicode_ci,
  `coupon_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `coupon_discount` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('pending','processing','completed','declined','on delivery') NOT NULL DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `affilate_user` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `affilate_charge` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency_sign` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_value` double NOT NULL,
  `shipping_cost` double NOT NULL,
  `packing_cost` double NOT NULL DEFAULT '0',
  `tax` int(191) NOT NULL,
  `dp` tinyint(1) NOT NULL DEFAULT '0',
  `pay_id` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `vendor_shipping_id` int(191) NOT NULL DEFAULT '0',
  `vendor_packing_id` int(191) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.orders: ~0 rows (approximately)
/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;

-- Dumping structure for table ebaskat.order_tracks
CREATE TABLE IF NOT EXISTS `order_tracks` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `order_id` int(191) NOT NULL,
  `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.order_tracks: ~0 rows (approximately)
/*!40000 ALTER TABLE `order_tracks` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_tracks` ENABLE KEYS */;

-- Dumping structure for table ebaskat.packages
CREATE TABLE IF NOT EXISTS `packages` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL DEFAULT '0',
  `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `subtitle` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `price` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.packages: ~2 rows (approximately)
/*!40000 ALTER TABLE `packages` DISABLE KEYS */;
INSERT INTO `packages` (`id`, `user_id`, `title`, `subtitle`, `price`) VALUES
	(1, 0, 'Default Packaging', 'Default packaging by store', 0),
	(2, 0, 'Gift Packaging', 'Exclusive Gift packaging', 15);
/*!40000 ALTER TABLE `packages` ENABLE KEYS */;

-- Dumping structure for table ebaskat.pages
CREATE TABLE IF NOT EXISTS `pages` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_tag` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `meta_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `header` tinyint(1) NOT NULL DEFAULT '0',
  `footer` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.pages: ~3 rows (approximately)
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` (`id`, `title`, `slug`, `details`, `meta_tag`, `meta_description`, `header`, `footer`) VALUES
	(1, 'About Us', 'about', '<div helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><h2><font size="6">Title number 1</font><br></h2><p><span style="font-weight: 700;">Lorem Ipsum</span>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></div><div helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><h2><font size="6">Title number 2</font><br></h2><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p></div><br helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><div helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><h2><font size="6">Title number 3</font><br></h2><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p></div><h2 helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-weight:="" 700;="" line-height:="" 1.1;="" color:="" rgb(51,="" 51,="" 51);="" margin:="" 0px="" 15px;="" font-size:="" 30px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"="" style="font-family: " 51);"=""><font size="6">Title number 9</font><br></h2><p helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"="">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>', NULL, NULL, 1, 0),
	(2, 'Privacy & Policy', 'privacy', '<div helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><h2><img src="https://i.imgur.com/BobQuyA.jpg" width="591"></h2><h2><font size="6">Title number 1</font></h2><p><span style="font-weight: 700;">Lorem Ipsum</span>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></div><div helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><h2><font size="6">Title number 2</font><br></h2><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p></div><br helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><div helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><h2><font size="6">Title number 3</font><br></h2><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p></div><h2 helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-weight:="" 700;="" line-height:="" 1.1;="" color:="" rgb(51,="" 51,="" 51);="" margin:="" 0px="" 15px;="" font-size:="" 30px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"="" 51);"="" style="font-family: "><font size="6">Title number 9</font><br></h2><p helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"="">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>', 'test,test1,test2,test3', 'Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.', 0, 1),
	(3, 'Terms & Condition', 'terms', '<div helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><h2><font size="6">Title number 1</font><br></h2><p><span style="font-weight: 700;">Lorem Ipsum</span>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></div><div helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><h2><font size="6">Title number 2</font><br></h2><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p></div><br helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><div helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"=""><h2><font size="6">Title number 3</font><br></h2><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p></div><h2 helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-weight:="" 700;="" line-height:="" 1.1;="" color:="" rgb(51,="" 51,="" 51);="" margin:="" 0px="" 15px;="" font-size:="" 30px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"="" 51);"="" style="font-family: "><font size="6">Title number 9</font><br></h2><p helvetica="" neue",="" helvetica,="" arial,="" sans-serif;="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" 400;="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb(255,="" 255,="" 255);="" text-decoration-style:="" initial;="" text-decoration-color:="" initial;"="">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>', 't1,t2,t3,t4', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.', 0, 1);
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;

-- Dumping structure for table ebaskat.pagesettings
CREATE TABLE IF NOT EXISTS `pagesettings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contact_success` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_title` text COLLATE utf8mb4_unicode_ci,
  `contact_text` text COLLATE utf8mb4_unicode_ci,
  `side_title` text COLLATE utf8mb4_unicode_ci,
  `side_text` text COLLATE utf8mb4_unicode_ci,
  `street` text COLLATE utf8mb4_unicode_ci,
  `phone` text COLLATE utf8mb4_unicode_ci,
  `fax` text COLLATE utf8mb4_unicode_ci,
  `email` text COLLATE utf8mb4_unicode_ci,
  `site` text COLLATE utf8mb4_unicode_ci,
  `slider` tinyint(1) NOT NULL DEFAULT '1',
  `service` tinyint(1) NOT NULL DEFAULT '1',
  `featured` tinyint(1) NOT NULL DEFAULT '1',
  `best` tinyint(1) NOT NULL DEFAULT '1',
  `top_rated` tinyint(1) NOT NULL DEFAULT '1',
  `large_banner` tinyint(1) NOT NULL DEFAULT '1',
  `big` tinyint(1) NOT NULL DEFAULT '1',
  `hot_sale` tinyint(1) NOT NULL DEFAULT '1',
  `partners` tinyint(1) NOT NULL DEFAULT '0',
  `review_blog` tinyint(1) NOT NULL DEFAULT '1',
  `flash_deal` tinyint(1) NOT NULL DEFAULT '0',
  `featured_category` int(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.pagesettings: ~1 rows (approximately)
/*!40000 ALTER TABLE `pagesettings` DISABLE KEYS */;
INSERT INTO `pagesettings` (`id`, `contact_success`, `contact_email`, `contact_title`, `contact_text`, `side_title`, `side_text`, `street`, `phone`, `fax`, `email`, `site`, `slider`, `service`, `featured`, `best`, `top_rated`, `large_banner`, `big`, `hot_sale`, `partners`, `review_blog`, `flash_deal`, `featured_category`) VALUES
	(1, 'Success! Thanks for contacting us, we will get back to you shortly.', 'admin@geniusocean.com', '<h4 class="subtitle" style="margin-bottom: 6px; font-weight: 600; line-height: 28px; font-size: 28px; text-transform: uppercase;">WE\'D LOVE TO</h4><h2 class="title" style="margin-bottom: 13px;font-weight: 600;line-height: 50px;font-size: 40px;color: #0f78f2;text-transform: uppercase;">HEAR FROM YOU</h2>', '<span style="color: rgb(119, 119, 119);">Send us a message and we\' ll respond as soon as possible</span><br>', '<h4 class="title" style="margin-bottom: 10px; font-weight: 600; line-height: 28px; font-size: 28px;">Let\'s Connect</h4>', '<span style="color: rgb(51, 51, 51);">Get in touch with us</span>', '3584 Hickory Heights Drive ,Hanover MD 21076, USA', '00 000 000 000', '00 000 000 000', 'admin@geniusocean.com', 'https://geniusocean.com/', 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1);
/*!40000 ALTER TABLE `pagesettings` ENABLE KEYS */;

-- Dumping structure for table ebaskat.partners
CREATE TABLE IF NOT EXISTS `partners` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `photo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `link` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.partners: ~6 rows (approximately)
/*!40000 ALTER TABLE `partners` DISABLE KEYS */;
INSERT INTO `partners` (`id`, `photo`, `link`) VALUES
	(1, '1563165366brand-1.png', 'https://www.google.com/'),
	(2, '1563165383brand-2.png', 'https://www.google.com/'),
	(3, '1563165393brand-3.png', 'https://www.google.com/'),
	(4, '1563165400brand-1.png', NULL),
	(5, '1563165411brand-2.png', NULL),
	(6, '1563165444brand-3.png', NULL);
/*!40000 ALTER TABLE `partners` ENABLE KEYS */;

-- Dumping structure for table ebaskat.permissions
CREATE TABLE IF NOT EXISTS `permissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_special` tinyint(1) DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.permissions: ~22 rows (approximately)
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
INSERT INTO `permissions` (`id`, `name`, `is_special`, `created_at`, `updated_at`) VALUES
	(1, 'orders', 0, '2021-05-02 15:41:05', '2021-05-02 15:41:05'),
	(2, 'products', 0, '2021-05-02 15:41:55', '2021-05-02 15:41:55'),
	(3, 'home_page_settings', 0, '2021-05-18 16:15:33', '2021-05-18 16:15:33'),
	(4, 'general_settings', 0, '2021-05-19 09:09:48', '2021-05-19 09:09:48'),
	(5, 'affilate_products', 0, '2021-05-19 17:05:36', '2021-05-19 17:05:36'),
	(6, 'customers', 0, '2021-05-19 17:07:57', '2021-05-19 17:07:57'),
	(7, 'vendors', 0, '2021-05-19 17:09:54', '2021-05-19 17:09:54'),
	(8, 'vendor_subscription_plans', 0, '2021-05-19 17:10:03', '2021-05-19 17:10:03'),
	(9, 'categories', 0, '2021-05-19 17:10:10', '2021-05-19 17:10:10'),
	(10, 'bulk_product_upload', 0, '2021-05-19 17:10:17', '2021-05-19 17:10:17'),
	(11, 'product_discussion', 0, '2021-05-19 17:10:22', '2021-05-19 17:10:22'),
	(12, 'set_coupons', 0, '2021-05-19 17:10:28', '2021-05-19 17:10:28'),
	(13, 'blog', 0, '2021-05-19 17:10:32', '2021-05-19 17:10:32'),
	(14, 'messages', 0, '2021-05-19 17:10:37', '2021-05-19 17:10:37'),
	(15, 'menu_page_settings', 0, '2021-05-19 17:11:44', '2021-05-19 17:11:44'),
	(16, 'emails_settings', 0, '2021-05-19 17:11:51', '2021-05-19 17:11:51'),
	(17, 'payment_settings', 0, '2021-05-19 17:12:00', '2021-05-19 17:12:00'),
	(18, 'social_settings', 0, '2021-05-19 17:12:06', '2021-05-19 17:12:06'),
	(19, 'language_settings', 0, '2021-05-19 17:12:12', '2021-05-19 17:12:12'),
	(20, 'seo_tools', 0, '2021-05-19 17:12:21', '2021-05-19 17:12:21'),
	(21, 'manage_staffs', 0, '2021-05-19 17:12:26', '2021-05-19 17:12:26'),
	(22, 'subscribers', 0, '2021-05-19 17:12:32', '2021-05-19 17:12:32');
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;

-- Dumping structure for table ebaskat.pickups
CREATE TABLE IF NOT EXISTS `pickups` (
  `id` int(191) unsigned NOT NULL AUTO_INCREMENT,
  `location` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.pickups: ~5 rows (approximately)
/*!40000 ALTER TABLE `pickups` DISABLE KEYS */;
INSERT INTO `pickups` (`id`, `location`) VALUES
	(2, 'Azampur'),
	(3, 'Dhaka'),
	(4, 'Kazipara'),
	(5, 'Kamarpara'),
	(6, 'Uttara');
/*!40000 ALTER TABLE `pickups` ENABLE KEYS */;

-- Dumping structure for table ebaskat.products
CREATE TABLE IF NOT EXISTS `products` (
  `id` int(191) unsigned NOT NULL AUTO_INCREMENT,
  `sku` varchar(255) DEFAULT NULL,
  `product_type` enum('normal','affiliate') NOT NULL DEFAULT 'normal',
  `affiliate_link` text,
  `user_id` int(191) NOT NULL DEFAULT '0',
  `category_id` int(191) unsigned NOT NULL,
  `subcategory_id` int(191) unsigned DEFAULT NULL,
  `childcategory_id` int(191) unsigned DEFAULT NULL,
  `attributes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `photo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `thumbnail` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `size` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `size_qty` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `size_price` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `color` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `price` double NOT NULL,
  `previous_price` double DEFAULT NULL,
  `commission` double(8,2) DEFAULT NULL,
  `details` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `stock` int(191) DEFAULT NULL,
  `policy` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` tinyint(2) unsigned NOT NULL DEFAULT '1',
  `views` int(191) unsigned NOT NULL DEFAULT '0',
  `tags` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `features` text,
  `colors` text,
  `product_condition` tinyint(1) NOT NULL DEFAULT '0',
  `ship` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_meta` tinyint(1) NOT NULL DEFAULT '0',
  `meta_tag` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `meta_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `youtube` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` enum('Physical','Digital','License') NOT NULL,
  `license` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `license_qty` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `link` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `platform` varchar(255) DEFAULT NULL,
  `region` varchar(255) DEFAULT NULL,
  `licence_type` varchar(255) DEFAULT NULL,
  `measure` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `featured` tinyint(2) unsigned NOT NULL DEFAULT '0',
  `best` tinyint(10) unsigned NOT NULL DEFAULT '0',
  `top` tinyint(10) unsigned NOT NULL DEFAULT '0',
  `hot` tinyint(10) unsigned NOT NULL DEFAULT '0',
  `latest` tinyint(10) unsigned NOT NULL DEFAULT '0',
  `big` tinyint(10) unsigned NOT NULL DEFAULT '0',
  `trending` tinyint(1) NOT NULL DEFAULT '0',
  `sale` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_discount` tinyint(1) NOT NULL DEFAULT '0',
  `discount_date` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `whole_sell_qty` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `whole_sell_discount` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `is_catalog` tinyint(1) NOT NULL DEFAULT '0',
  `catalog_id` int(191) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  FULLTEXT KEY `name` (`name`),
  FULLTEXT KEY `attributes` (`attributes`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.products: ~0 rows (approximately)
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
INSERT INTO `products` (`id`, `sku`, `product_type`, `affiliate_link`, `user_id`, `category_id`, `subcategory_id`, `childcategory_id`, `attributes`, `name`, `slug`, `photo`, `thumbnail`, `file`, `size`, `size_qty`, `size_price`, `color`, `price`, `previous_price`, `commission`, `details`, `stock`, `policy`, `status`, `views`, `tags`, `features`, `colors`, `product_condition`, `ship`, `is_meta`, `meta_tag`, `meta_description`, `youtube`, `type`, `license`, `license_qty`, `link`, `platform`, `region`, `licence_type`, `measure`, `featured`, `best`, `top`, `hot`, `latest`, `big`, `trending`, `sale`, `created_at`, `updated_at`, `is_discount`, `discount_date`, `whole_sell_qty`, `whole_sell_discount`, `is_catalog`, `catalog_id`) VALUES
	(1, '123343561', 'affiliate', 'https://www.amazon.com/adidas-Girls-Sleeveless-Toddler-Little/dp/B07MTJL7ZT/ref=sr_1_1?keywords=dress&qid=1565068717&s=gateway&sr=8-1', 50, 4, 2, 1, NULL, 'Test CSV Product', 'test-csv-product-123343561', 'lt33JpyaEY.jpg', NULL, NULL, 'X,3XL', '22,23', '5,8', '#000000,#9c1515,#24f015,#050bc2,#d1900c', 20, 25, 0.00, 'This is product Description', 10, 'Test policy', 1, 0, 'CLOTHS,FASHION,WOMEN FASHION,DRESSES,MENSWEAR', NULL, NULL, 0, NULL, 0, '', '', 'https://www.youtube.com/watch?v=7hx4gdlfamo', 'Physical', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, '2021-05-28 19:11:36', '2021-05-28 19:18:03', 0, NULL, NULL, NULL, 0, 0);
/*!40000 ALTER TABLE `products` ENABLE KEYS */;

-- Dumping structure for table ebaskat.product_clicks
CREATE TABLE IF NOT EXISTS `product_clicks` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `product_id` int(191) NOT NULL,
  `date` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.product_clicks: ~0 rows (approximately)
/*!40000 ALTER TABLE `product_clicks` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_clicks` ENABLE KEYS */;

-- Dumping structure for table ebaskat.ratings
CREATE TABLE IF NOT EXISTS `ratings` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL,
  `product_id` int(191) NOT NULL,
  `review` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `rating` tinyint(2) NOT NULL,
  `review_date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.ratings: ~0 rows (approximately)
/*!40000 ALTER TABLE `ratings` DISABLE KEYS */;
/*!40000 ALTER TABLE `ratings` ENABLE KEYS */;

-- Dumping structure for table ebaskat.replies
CREATE TABLE IF NOT EXISTS `replies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) unsigned NOT NULL,
  `comment_id` int(191) unsigned NOT NULL,
  `text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.replies: ~0 rows (approximately)
/*!40000 ALTER TABLE `replies` DISABLE KEYS */;
/*!40000 ALTER TABLE `replies` ENABLE KEYS */;

-- Dumping structure for table ebaskat.reports
CREATE TABLE IF NOT EXISTS `reports` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL,
  `product_id` int(192) NOT NULL,
  `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.reports: ~0 rows (approximately)
/*!40000 ALTER TABLE `reports` DISABLE KEYS */;
/*!40000 ALTER TABLE `reports` ENABLE KEYS */;

-- Dumping structure for table ebaskat.reviews
CREATE TABLE IF NOT EXISTS `reviews` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subtitle` text COLLATE utf8mb4_unicode_ci,
  `details` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.reviews: ~3 rows (approximately)
/*!40000 ALTER TABLE `reviews` DISABLE KEYS */;
INSERT INTO `reviews` (`id`, `photo`, `title`, `subtitle`, `details`) VALUES
	(4, '1557343012img.jpg', 'Jhon Smith', 'CEO & Founder', 'Lorem ipsum dolor sit amet, consectetur elitad adipiscing Cras non placerat mi.'),
	(5, '1557343018img.jpg', 'Jhon Smith', 'CEO & Founder', 'Lorem ipsum dolor sit amet, consectetur elitad adipiscing Cras non placerat mi.'),
	(6, '1557343024img.jpg', 'Jhon Smith', 'CEO & Founder', 'Lorem ipsum dolor sit amet, consectetur elitad adipiscing Cras non placerat mi.');
/*!40000 ALTER TABLE `reviews` ENABLE KEYS */;

-- Dumping structure for table ebaskat.roles
CREATE TABLE IF NOT EXISTS `roles` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` text,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.roles: ~3 rows (approximately)
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` (`id`, `name`, `permissions`) VALUES
	(16, 'Manager', '{"orders":[],"products":[],"home_page_settings":["add","edit","delete"]}'),
	(17, 'Moderator', '[]'),
	(18, 'Staff', '[]');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;

-- Dumping structure for table ebaskat.seotools
CREATE TABLE IF NOT EXISTS `seotools` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `google_analytics` text COLLATE utf8mb4_unicode_ci,
  `meta_keys` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.seotools: ~0 rows (approximately)
/*!40000 ALTER TABLE `seotools` DISABLE KEYS */;
INSERT INTO `seotools` (`id`, `google_analytics`, `meta_keys`) VALUES
	(1, '<script>//Google Analytics</script>', 'Genius,Ocean,Sea,Etc,Genius,Ocean,SeaGenius,Ocean,Sea,Etc,Genius,Ocean,SeaGenius,Ocean,Sea,Etc,Genius,Ocean,Sea');
/*!40000 ALTER TABLE `seotools` ENABLE KEYS */;

-- Dumping structure for table ebaskat.services
CREATE TABLE IF NOT EXISTS `services` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL DEFAULT '0',
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `details` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `photo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.services: ~8 rows (approximately)
/*!40000 ALTER TABLE `services` DISABLE KEYS */;
INSERT INTO `services` (`id`, `user_id`, `title`, `details`, `photo`) VALUES
	(2, 0, 'FREE SHIPPING', 'Free Shipping All Order', '1561348133service1.png'),
	(3, 0, 'PAYMENT METHOD', 'Secure Payment', '1561348138service2.png'),
	(4, 0, '30 DAY RETURNS', '30-Day Return Policy', '1561348143service3.png'),
	(5, 0, 'HELP CENTER', '24/7 Support System', '1561348147service4.png'),
	(6, 13, 'FREE SHIPPING', 'Free Shipping All Order', '1563247602brand1.png'),
	(7, 13, 'PAYMENT METHOD', 'Secure Payment', '1563247614brand2.png'),
	(8, 13, '30 DAY RETURNS', '30-Day Return Policy', '1563247620brand3.png'),
	(9, 13, 'HELP CENTER', '24/7 Support System', '1563247670brand4.png');
/*!40000 ALTER TABLE `services` ENABLE KEYS */;

-- Dumping structure for table ebaskat.shippings
CREATE TABLE IF NOT EXISTS `shippings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL DEFAULT '0',
  `title` text,
  `subtitle` text,
  `price` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.shippings: ~2 rows (approximately)
/*!40000 ALTER TABLE `shippings` DISABLE KEYS */;
INSERT INTO `shippings` (`id`, `user_id`, `title`, `subtitle`, `price`) VALUES
	(1, 0, 'Free Shipping', '(10 - 12 days)', 0),
	(2, 0, 'Express Shipping', '(5 - 6 days)', 10);
/*!40000 ALTER TABLE `shippings` ENABLE KEYS */;

-- Dumping structure for table ebaskat.sliders
CREATE TABLE IF NOT EXISTS `sliders` (
  `id` int(191) unsigned NOT NULL AUTO_INCREMENT,
  `subtitle_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `subtitle_size` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subtitle_color` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subtitle_anime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `title_size` varchar(50) DEFAULT NULL,
  `title_color` varchar(50) DEFAULT NULL,
  `title_anime` varchar(50) DEFAULT NULL,
  `details_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `details_size` varchar(50) DEFAULT NULL,
  `details_color` varchar(50) DEFAULT NULL,
  `details_anime` varchar(50) DEFAULT NULL,
  `photo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `position` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `link` text,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.sliders: ~3 rows (approximately)
/*!40000 ALTER TABLE `sliders` DISABLE KEYS */;
INSERT INTO `sliders` (`id`, `subtitle_text`, `subtitle_size`, `subtitle_color`, `subtitle_anime`, `title_text`, `title_size`, `title_color`, `title_anime`, `details_text`, `details_size`, `details_color`, `details_anime`, `photo`, `position`, `link`) VALUES
	(8, 'World Fashion', '24', '#ffffff', 'slideInUp', 'Get Up to 40% Off', '60', '#ffffff', 'slideInDown', 'Highlight your personality  and look with these fabulous and exquisite fashion.', '16', '#ffffff', 'slideInRight', '1564224870012.jpg', 'slide-three', 'https://www.google.com/'),
	(9, 'World Fashion', '24', '#ffffff', 'slideInUp', 'Get Up to 40% Off', '60', '#ffffff', 'slideInDown', 'Highlight your personality  and look with these fabulous and exquisite fashion.', '16', '#ffffff', 'slideInDown', '1619187596woman-3190829_1280.jpg', 'slide-three', 'https://www.google.com/'),
	(10, 'World Fashion', '24', '#c32d2d', 'slideInUp', 'Get Up to 40% Off', '60', '#bc2727', 'slideInDown', 'Highlight your personality  and look with these fabulous and exquisite fashion.', '16', '#c51d1d', 'slideInLeft', '156422490902.jpg', 'slide-one', 'https://www.google.com/');
/*!40000 ALTER TABLE `sliders` ENABLE KEYS */;

-- Dumping structure for table ebaskat.socialsettings
CREATE TABLE IF NOT EXISTS `socialsettings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `facebook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `gplus` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `twitter` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `linkedin` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `dribble` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `f_status` tinyint(4) NOT NULL DEFAULT '1',
  `g_status` tinyint(4) NOT NULL DEFAULT '1',
  `t_status` tinyint(4) NOT NULL DEFAULT '1',
  `l_status` tinyint(4) NOT NULL DEFAULT '1',
  `d_status` tinyint(4) NOT NULL DEFAULT '1',
  `f_check` tinyint(10) DEFAULT NULL,
  `g_check` tinyint(10) DEFAULT NULL,
  `fclient_id` text COLLATE utf8mb4_unicode_ci,
  `fclient_secret` text COLLATE utf8mb4_unicode_ci,
  `fredirect` text COLLATE utf8mb4_unicode_ci,
  `gclient_id` text COLLATE utf8mb4_unicode_ci,
  `gclient_secret` text COLLATE utf8mb4_unicode_ci,
  `gredirect` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.socialsettings: ~0 rows (approximately)
/*!40000 ALTER TABLE `socialsettings` DISABLE KEYS */;
INSERT INTO `socialsettings` (`id`, `facebook`, `gplus`, `twitter`, `linkedin`, `dribble`, `f_status`, `g_status`, `t_status`, `l_status`, `d_status`, `f_check`, `g_check`, `fclient_id`, `fclient_secret`, `fredirect`, `gclient_id`, `gclient_secret`, `gredirect`) VALUES
	(1, 'https://www.facebook.com/', 'https://plus.google.com/', 'https://twitter.com/', 'https://www.linkedin.com/', 'https://dribbble.com/', 1, 1, 1, 1, 1, 1, 1, '503140663460329', 'f66cd670ec43d14209a2728af26dcc43', 'https://localhost/geniuscart1.7.4/auth/facebook/callback', '904681031719-sh1aolu42k7l93ik0bkiddcboghbpcfi.apps.googleusercontent.com', 'yGBWmUpPtn5yWhDAsXnswEX3', 'http://localhost/geniuscart1.7.4/auth/google/callback');
/*!40000 ALTER TABLE `socialsettings` ENABLE KEYS */;

-- Dumping structure for table ebaskat.social_providers
CREATE TABLE IF NOT EXISTS `social_providers` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL,
  `provider_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `provider` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.social_providers: ~0 rows (approximately)
/*!40000 ALTER TABLE `social_providers` DISABLE KEYS */;
/*!40000 ALTER TABLE `social_providers` ENABLE KEYS */;

-- Dumping structure for table ebaskat.subcategories
CREATE TABLE IF NOT EXISTS `subcategories` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `category_id` int(191) NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.subcategories: ~16 rows (approximately)
/*!40000 ALTER TABLE `subcategories` DISABLE KEYS */;
INSERT INTO `subcategories` (`id`, `category_id`, `name`, `slug`, `status`) VALUES
	(2, 4, 'TELEVISION', 'television', 1),
	(3, 4, 'REFRIGERATOR', 'refrigerator', 1),
	(4, 4, 'WASHING MACHINE', 'washing-machine', 1),
	(5, 4, 'AIR CONDITIONERS', 'air-conditioners', 1),
	(6, 5, 'ACCESSORIES', 'accessories', 1),
	(7, 5, 'BAGS', 'bags', 1),
	(8, 5, 'CLOTHINGS', 'clothings', 1),
	(9, 5, 'SHOES', 'shoes', 1),
	(10, 7, 'APPLE', 'apple', 1),
	(11, 7, 'SAMSUNG', 'samsung', 1),
	(12, 7, 'LG', 'lg', 1),
	(13, 7, 'SONY', 'sony', 1),
	(14, 6, 'DSLR', 'dslr', 1),
	(15, 6, 'Camera Phone', 'camera-phone', 1),
	(16, 6, 'Action Camera', 'animation-camera', 1),
	(17, 6, 'Digital Camera', 'digital-camera', 1);
/*!40000 ALTER TABLE `subcategories` ENABLE KEYS */;

-- Dumping structure for table ebaskat.subscribers
CREATE TABLE IF NOT EXISTS `subscribers` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.subscribers: ~0 rows (approximately)
/*!40000 ALTER TABLE `subscribers` DISABLE KEYS */;
/*!40000 ALTER TABLE `subscribers` ENABLE KEYS */;

-- Dumping structure for table ebaskat.subscriptions
CREATE TABLE IF NOT EXISTS `subscriptions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` double NOT NULL DEFAULT '0',
  `days` int(11) NOT NULL,
  `allowed_products` int(11) NOT NULL DEFAULT '0',
  `details` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.subscriptions: ~4 rows (approximately)
/*!40000 ALTER TABLE `subscriptions` DISABLE KEYS */;
INSERT INTO `subscriptions` (`id`, `title`, `currency`, `currency_code`, `price`, `days`, `allowed_products`, `details`) VALUES
	(5, 'Standard', '$', 'USD', 60, 45, 25, '<ol><li>Lorem ipsum dolor sit amet<br></li><li>Lorem ipsum dolor sit ame<br></li><li>Lorem ipsum dolor sit am<br></li></ol>'),
	(6, 'Premium', '$', 'USD', 120, 90, 90, '<span style="color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" text-align:="" justify;"="">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span><br>'),
	(7, 'Unlimited', '$', 'USD', 250, 365, 0, '<span style="color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" text-align:="" justify;"="">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span><br>'),
	(8, 'Basic', '$', 'USD', 0, 30, 0, '<ol><li>Lorem ipsum dolor sit amet<br></li><li>Lorem ipsum dolor sit ame<br></li><li>Lorem ipsum dolor sit am<br></li></ol>');
/*!40000 ALTER TABLE `subscriptions` ENABLE KEYS */;

-- Dumping structure for table ebaskat.users
CREATE TABLE IF NOT EXISTS `users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fax` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_provider` tinyint(10) NOT NULL DEFAULT '0',
  `status` tinyint(10) NOT NULL DEFAULT '0',
  `verification_link` text COLLATE utf8mb4_unicode_ci,
  `email_verified` enum('Yes','No') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'No',
  `affilate_code` text COLLATE utf8mb4_unicode_ci,
  `affilate_income` double NOT NULL DEFAULT '0',
  `f_url` text COLLATE utf8mb4_unicode_ci,
  `g_url` text COLLATE utf8mb4_unicode_ci,
  `t_url` text COLLATE utf8mb4_unicode_ci,
  `l_url` text COLLATE utf8mb4_unicode_ci,
  `is_vendor` tinyint(1) NOT NULL DEFAULT '0',
  `f_check` tinyint(1) NOT NULL DEFAULT '0',
  `g_check` tinyint(1) NOT NULL DEFAULT '0',
  `t_check` tinyint(1) NOT NULL DEFAULT '0',
  `l_check` tinyint(1) NOT NULL DEFAULT '0',
  `mail_sent` tinyint(1) NOT NULL DEFAULT '0',
  `shipping_cost` double NOT NULL DEFAULT '0',
  `current_balance` double NOT NULL DEFAULT '0',
  `date` date DEFAULT NULL,
  `ban` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table ebaskat.users: ~11 rows (approximately)
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `name`, `photo`, `zip`, `city`, `country`, `address`, `phone`, `fax`, `email`, `password`, `remember_token`, `created_at`, `updated_at`, `is_provider`, `status`, `verification_link`, `email_verified`, `affilate_code`, `affilate_income`, `f_url`, `g_url`, `t_url`, `l_url`, `is_vendor`, `f_check`, `g_check`, `t_check`, `l_check`, `mail_sent`, `shipping_cost`, `current_balance`, `date`, `ban`) VALUES
	(13, 'Vendor', '1557677677bouquet_PNG62.png', '1234', 'Washington, DC', 'Algeria', 'Space Needle 400 Broad St, Seattles', '3453453345453411', '23123121', 'vendor@gmail.com', '$2y$10$.4NrvXAeyToa4x07EkFvS.XIUEc/aXGsxe1onkQ.Udms4Sl2W9ZYq', 'NftOPkaLGtK6S8f2zeAWNd7ecR5FVwUrHmJIjNPgKE1dSKlzfzMPqlXpOLHf', '2018-03-08 00:05:44', '2021-04-12 13:03:18', 0, 2, '$2y$10$oIf1at.0LwscVwaX/8h.WuSwMKEAAsn8EJ.9P7mWzNUFIcEBQs8ry', 'Yes', '$2y$10$oIf1at.0LwscVwaX/8h.WuSwMKEAAsn8EJ.9P7mWzNUFIcEBQs8rysdfsdfds', 5000, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, 4978.02, '2019-11-24', 0),
	(22, 'User', NULL, '1231', 'Test City', 'United States', 'Test Address', '34534534534', '34534534534', 'user@gmail.com', '$2y$10$.4NrvXAeyToa4x07EkFvS.XIUEc/aXGsxe1onkQ.Udms4Sl2W9ZYq', 'QDJly7GbYKwIaYBVF5SRYspgNfB9fb9MGnPC8ZKTysOyYiJfhqutVTPocuJe', '2019-06-20 18:26:24', '2021-04-12 13:03:12', 0, 0, '1edae93935fba69d9542192fb854a80a', 'Yes', '8f09b9691613ecb8c3f7e36e34b97b80', 4963.6900000000005, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, 0, '2021-04-09', 0),
	(27, 'Test User', NULL, NULL, NULL, NULL, 'Space Needle 400 Broad St, Seattles', '34534534', NULL, 'junajunnun@gmail.com', '$2y$10$pxNqceuvTvYLuwA.gZ15aejOTtXGHrDT7t2m8wfIZhNO1e52z7aLS', 'aj5QkQ4RCfF3hNpI8ad1uXHjOaS6rRgXXLJIEQEkw8UfEVDxnJeuv1928WMf', '2019-10-05 10:15:08', '2021-04-12 13:03:08', 0, 0, '0521bba4c819528b6a18a581a5842f17', 'Yes', 'bb9d23401cd70f11998fe36ea7677797', 0, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, 0, '2019-11-24', 0),
	(28, 'User', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'junnun@gmail.com', '$2y$10$YDfElg7O3K6eQK5enu.TBOyo.8TIr6Ynf9hFQ8dsIDeWAfmmg6hA.', 'pNFebTvEQ3jRaky9p7XnCetHs9aNFFG7nqRFho0U7nWrgT7phS6MoX8f9EYz', '2019-10-13 11:39:13', '2019-10-13 11:39:13', 0, 0, '8036978c6d71501e893ba7d3f3ecc15d', 'Yes', '33899bafa30292165430cb90b545728a', 0, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0),
	(29, 'Jahidul', NULL, NULL, NULL, NULL, 'T/10, Nurjahan Road, Mohammadpur, Dhaka 1207', '01654646464', NULL, 'developermood3@gmail.com', '$2y$10$BXXP3HYDkN9ptbqnMEIvUuR0mt/UEKUf4vTxQ6wJvFHhPH/k8Z1q.', NULL, '2021-04-12 18:38:12', '2021-05-09 17:27:51', 0, 0, 'b641ff0760c6677b8630044f966230cb', 'Yes', '55fed4f4f535b7d84107dd560ed16260', 0, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, 0, NULL, 0),
	(30, 'Jahidul Hasan Zahid', NULL, NULL, NULL, NULL, 'T/10, Nurjahan Road, Mohammadpur, Dhaka 1207', '01654646464', NULL, 'developermood33@gmail.com', '$2y$10$ZYmpHebnnrRKVxsNjBtUBePxFYNRMmHl8.NeUpCc0LUU936KxQyNm', NULL, '2021-04-15 15:09:16', '2021-04-15 15:09:16', 0, 0, '95a81daabc2ae599223d1b32efc1d7cc', 'Yes', 'e36cdbb0b0d2e00bb7ed19b644d3309c', 0, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0),
	(31, 'test', NULL, NULL, NULL, NULL, 'T/10, Nurjahan Road, Mohammadpur, Dhaka 1207', '01654646464', NULL, 'test@test.com', '$2y$10$R4Vpt3BGO8ZFVHMu2yCOcuw81fbyWrPdWd9SIRvRtR27vU3lU/Kpe', NULL, '2021-04-16 14:00:51', '2021-04-16 14:00:51', 0, 0, '6d607776c1308bdc6ee1b6b3e2aa9f57', 'Yes', '735e8111b5c0fd9284b42075ef33b193', 0, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0),
	(32, 'Jahidul Hasan Zahid', NULL, NULL, NULL, NULL, 'T/10, Nurjahan Road, Mohammadpur', '01654646464', NULL, 'vendor@vendor.com', '$2y$10$fkC1vlUW5TXcurPdmVp/LONmFectM8teRzc/LzfUDU6QjOrzYZzFG', NULL, '2021-04-16 17:08:33', '2021-05-17 20:15:04', 0, 0, 'e6cf9334fd57507ce7f3c3d567e2ccc2', 'Yes', '2be3e3206c37e465e1010715e04f24f4', 0, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, 30, '2021-05-16', 0),
	(48, 'Jahidul Hasan', NULL, '1207', 'Dhaka', 'Bangladesh', 'Dhaka', '01224345355', NULL, 'jahidulhasanzahid71@gmail.com', '$2y$10$jhhgiZUUTU5OiPBYvQxfF.6uOHl9YbNGdFXZeLZJ.IKif7gTpktsC', NULL, '2021-04-26 19:34:34', '2021-05-17 20:26:58', 0, 0, 'ef2554416821d194a30b443fd4923dd4', 'Yes', '167897544a94a3a9230ef2d7e2a88594', 0, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, 0, NULL, 0),
	(49, 'Jahidul Hasan', NULL, NULL, NULL, 'Bangladesh', 'Dhaka', '4752856354312', NULL, 'newmerchant@gmail.com', '$2y$10$i1x9LrT16.bLsVEIfTJv8OEJlRNamdQfYjDTeRE8oEsiOJ.54jZMO', NULL, '2021-04-26 20:04:26', '2021-05-09 17:27:54', 0, 0, '7f7a73a6dbd41b9269ac5d779c04c486', 'Yes', '8647d647b2a8bc27ff91b13e3d3020a0', 0, NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, 0, '2021-05-26', 0),
	(50, 'all new', NULL, NULL, NULL, NULL, 'Dhaka', '12346457', NULL, 'allnew@allnew.com', '$2y$10$gdDqTkf5lSRWGmP0ZYaXIuii5XAks83dQH1NivFM3vdYZqM4BtOnG', NULL, '2021-05-10 20:09:17', '2021-05-25 19:03:58', 0, 0, '9eb7d106bab24ba60ba6fd2dc7b83df8', 'Yes', '69b42e7acee2d3963db4618237099def', 0, NULL, NULL, NULL, NULL, 2, 0, 0, 0, 0, 1, 0, 0, '2022-05-25', 0);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;

-- Dumping structure for table ebaskat.user_notifications
CREATE TABLE IF NOT EXISTS `user_notifications` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL,
  `order_number` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.user_notifications: ~25 rows (approximately)
/*!40000 ALTER TABLE `user_notifications` DISABLE KEYS */;
INSERT INTO `user_notifications` (`id`, `user_id`, `order_number`, `is_read`, `created_at`, `updated_at`) VALUES
	(1, 13, 'wuiGJCKZxG', 0, '2020-10-03 07:18:53', '2020-10-03 07:18:53'),
	(2, 13, '2KdAxvuaKa', 0, '2020-10-03 07:19:57', '2020-10-03 07:19:57'),
	(3, 13, 'kQSUdfSLEP', 0, '2020-10-03 07:23:33', '2020-10-03 07:23:33'),
	(4, 13, 'BSjsjZ0jKs', 0, '2020-10-03 07:30:45', '2020-10-03 07:30:45'),
	(5, 13, 'M7MM5XZffF', 0, '2020-10-03 07:47:29', '2020-10-03 07:47:29'),
	(6, 13, 'mYcCSQ72wd', 0, '2020-10-03 07:48:33', '2020-10-03 07:48:33'),
	(7, 13, 'EWWmq8tvvn', 0, '2020-10-03 07:49:40', '2020-10-03 07:49:40'),
	(8, 13, 'ixyc5Hy2T5', 0, '2020-10-11 03:33:46', '2020-10-11 03:33:46'),
	(9, 13, 'L1Ak0uAZKH', 0, '2020-10-11 03:36:15', '2020-10-11 03:36:15'),
	(10, 13, 'ENgdWeCTWw', 0, '2020-10-11 03:46:32', '2020-10-11 03:46:32'),
	(11, 13, 'i2BmG2XTwq', 0, '2020-10-11 03:50:51', '2020-10-11 03:50:51'),
	(12, 13, 'EnPNwg0HBW', 0, '2020-10-11 06:13:09', '2020-10-11 06:13:09'),
	(13, 13, 'syo6qqw9tj', 0, '2020-10-11 06:14:22', '2020-10-11 06:14:22'),
	(14, 13, 'OTrilq0ksT', 0, '2020-10-11 06:15:23', '2020-10-11 06:15:23'),
	(15, 13, 'OUt8COG6y3', 0, '2020-10-11 06:16:01', '2020-10-11 06:16:01'),
	(16, 13, 'uqcXeGbPpL', 0, '2020-10-11 06:17:02', '2020-10-11 06:17:02'),
	(17, 13, 'Z6keKYmaHj', 0, '2020-10-11 06:18:19', '2020-10-11 06:18:19'),
	(18, 13, 'optY8xBJtR', 0, '2020-10-11 06:20:17', '2020-10-11 06:20:17'),
	(19, 13, 'OqqbWR2Tnb', 0, '2020-10-11 06:20:59', '2020-10-11 06:20:59'),
	(20, 13, 'pbDNzHMpqB', 0, '2020-10-11 06:23:34', '2020-10-11 06:23:34'),
	(21, 13, '3DvLJRHa5R', 0, '2020-10-11 06:24:04', '2020-10-11 06:24:04'),
	(22, 32, 'aESqXQFTDY', 1, '2021-04-16 18:18:24', '2021-04-28 19:24:47'),
	(23, 32, 'e3umSUIoWj', 1, '2021-04-16 18:36:44', '2021-04-28 19:24:47'),
	(24, 49, '23edcrmz0F', 0, '2021-04-27 20:11:04', '2021-04-27 20:11:04'),
	(25, 32, '7rixSVSnnH', 1, '2021-05-03 18:45:04', '2021-05-10 20:45:28');
/*!40000 ALTER TABLE `user_notifications` ENABLE KEYS */;

-- Dumping structure for table ebaskat.user_subscriptions
CREATE TABLE IF NOT EXISTS `user_subscriptions` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL,
  `subscription_id` int(191) NOT NULL,
  `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` double NOT NULL DEFAULT '0',
  `days` int(11) NOT NULL,
  `allowed_products` int(11) NOT NULL DEFAULT '0',
  `details` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `method` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Free',
  `txnid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `charge_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT '0',
  `payment_number` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.user_subscriptions: ~9 rows (approximately)
/*!40000 ALTER TABLE `user_subscriptions` DISABLE KEYS */;
INSERT INTO `user_subscriptions` (`id`, `user_id`, `subscription_id`, `title`, `currency`, `currency_code`, `price`, `days`, `allowed_products`, `details`, `method`, `txnid`, `charge_id`, `created_at`, `updated_at`, `status`, `payment_number`) VALUES
	(81, 27, 5, 'Standard', '$', 'NGN', 60, 45, 25, '<ol><li>Lorem ipsum dolor sit amet<br></li><li>Lorem ipsum dolor sit ame<br></li><li>Lorem ipsum dolor sit am<br></li></ol>', 'Paystack', '688094995', NULL, '2019-10-10 03:32:57', '2020-10-11 06:27:15', 1, NULL),
	(84, 13, 5, 'Standard', '$', 'NGN', 60, 45, 25, '<ol><li>Lorem ipsum dolor sit amet<br></li><li>Lorem ipsum dolor sit ame<br></li><li>Lorem ipsum dolor sit am<br></li></ol>', 'Paystack', '242099342', NULL, '2019-10-10 08:35:29', '2020-10-11 06:27:15', 1, NULL),
	(85, 32, 8, 'Basic', '$', 'USD', 0, 30, 0, '<ol><li>Lorem ipsum dolor sit amet<br></li><li>Lorem ipsum dolor sit ame<br></li><li>Lorem ipsum dolor sit am<br></li></ol>', 'Free', NULL, NULL, '2021-04-16 17:08:51', '2021-04-16 17:08:51', 1, NULL),
	(87, 49, 8, 'Basic', '$', 'USD', 0, 30, 0, '<ol><li>Lorem ipsum dolor sit amet<br></li><li>Lorem ipsum dolor sit ame<br></li><li>Lorem ipsum dolor sit am<br></li></ol>', 'Free', NULL, NULL, '2021-04-26 20:04:42', '2021-04-26 20:04:42', 1, NULL),
	(88, 50, 8, 'Basic', '$', 'USD', 0, 30, 0, '<ol><li>Lorem ipsum dolor sit amet<br></li><li>Lorem ipsum dolor sit ame<br></li><li>Lorem ipsum dolor sit am<br></li></ol>', 'Free', NULL, NULL, '2021-05-10 20:09:44', '2021-05-10 20:09:44', 1, NULL),
	(89, 50, 5, 'Standard', '$', 'USD', 60, 45, 25, '<ol><li>Lorem ipsum dolor sit amet<br></li><li>Lorem ipsum dolor sit ame<br></li><li>Lorem ipsum dolor sit am<br></li></ol>', 'Stripe', 'txn_1Iv4ykA1bjxouOwwpFbQ2ZJ4', 'ch_1Iv4yjA1bjxouOwwMvZlykyL', '2021-05-25 18:27:47', '2021-05-25 18:27:47', 1, NULL),
	(90, 50, 6, 'Premium', '$', 'USD', 120, 90, 90, '<span style="color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" text-align:="" justify;"="">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span><br>', 'Stripe', 'txn_1Iv5HiA1bjxouOwwXcRjzOAt', 'ch_1Iv5HiA1bjxouOwwO4zhJX8a', '2021-05-25 18:47:23', '2021-05-25 18:47:23', 1, NULL),
	(91, 50, 5, 'Standard', '$', 'USD', 60, 45, 25, '<ol><li>Lorem ipsum dolor sit amet<br></li><li>Lorem ipsum dolor sit ame<br></li><li>Lorem ipsum dolor sit am<br></li></ol>', 'Stripe', 'txn_1Iv5WdA1bjxouOwwoTj9F9Xh', 'ch_1Iv5WcA1bjxouOwwz1uK1EbV', '2021-05-25 19:02:47', '2021-05-25 19:02:47', 1, NULL),
	(92, 50, 7, 'Unlimited', '$', 'USD', 250, 365, 0, '<span style="color: rgb(0, 0, 0); font-family: " open="" sans",="" arial,="" sans-serif;="" text-align:="" justify;"="">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span><br>', 'Stripe', 'txn_1Iv5XmA1bjxouOwwlSJ9vOYk', 'ch_1Iv5XlA1bjxouOww6iILgrHw', '2021-05-25 19:03:58', '2021-05-25 19:03:58', 1, NULL);
/*!40000 ALTER TABLE `user_subscriptions` ENABLE KEYS */;

-- Dumping structure for table ebaskat.vendor_information
CREATE TABLE IF NOT EXISTS `vendor_information` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `shop_name` varchar(255) DEFAULT NULL,
  `owner_name` varchar(255) DEFAULT NULL,
  `shop_number` varchar(255) DEFAULT NULL,
  `shop_address` varchar(255) DEFAULT NULL,
  `reg_number` varchar(255) DEFAULT NULL,
  `shop_message` varchar(255) DEFAULT NULL,
  `shop_details` varchar(255) DEFAULT NULL,
  `shop_image` text,
  `attachments` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` enum('Pending','Verified','Declined') DEFAULT NULL,
  `text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `admin_warning` tinyint(1) NOT NULL DEFAULT '0',
  `warning_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.vendor_information: ~8 rows (approximately)
/*!40000 ALTER TABLE `vendor_information` DISABLE KEYS */;
INSERT INTO `vendor_information` (`id`, `user_id`, `shop_name`, `owner_name`, `shop_number`, `shop_address`, `reg_number`, `shop_message`, `shop_details`, `shop_image`, `attachments`, `status`, `text`, `admin_warning`, `warning_reason`, `created_at`, `updated_at`) VALUES
	(10, 32, 'new merchant shop..', 'new merchant owner name..', 'shop number...', 'shop address...', 'registration number...', 'message...', 'Testing Part....', '1619553597woman-3190829_1280.jpg', '1619865415verify.txt', 'Declined', 'please verify my account', 0, 'please verify', '2021-04-26 20:04:26', '2021-05-18 19:39:36'),
	(11, 49, 'Shop Two', 'owner name', 'shop number', 'Dhaka', 'registration number', 'message', NULL, NULL, NULL, NULL, NULL, 0, NULL, '2021-04-26 19:34:34', '2021-04-26 19:34:34'),
	(51, 48, 'Shop Three', 'owner name', 'shop number', 'Dhaka', 'registration number', 'message', NULL, NULL, NULL, NULL, NULL, 0, NULL, '2021-04-26 19:34:34', '2021-04-26 19:34:34'),
	(52, 29, 'Shop Four', 'owner name', 'shop number', 'Dhaka', 'registration number', 'message', NULL, NULL, NULL, NULL, NULL, 0, NULL, '2021-04-26 19:34:34', '2021-04-26 19:34:34'),
	(53, 27, 'Shop Five', 'owner name', 'shop number', 'Dhaka', 'registration number', 'message', NULL, NULL, NULL, NULL, NULL, 0, NULL, '2021-04-26 19:34:34', '2021-04-26 19:34:34'),
	(54, 22, 'Shop Six', 'owner name', 'shop number', 'Dhaka', 'registration number', 'message', NULL, NULL, NULL, NULL, NULL, 0, NULL, '2021-04-26 19:34:34', '2021-04-26 19:34:34'),
	(55, 13, 'Shop Seven', 'owner name', 'shop number', 'Dhaka', 'registration number', 'message', NULL, NULL, NULL, NULL, NULL, 0, NULL, '2021-04-26 19:34:34', '2021-04-26 19:34:34'),
	(57, 50, 'Hello all new', 'all new.', '34567890054', 'all new', '6568870', 'all new', '<p>Hello All New Shop.</p>', NULL, '16213646495.png', 'Pending', 'Please verify my account. check attach documents.', 0, 'Please verify your account', '2021-05-10 20:09:17', '2021-05-20 19:55:01');
/*!40000 ALTER TABLE `vendor_information` ENABLE KEYS */;

-- Dumping structure for table ebaskat.vendor_orders
CREATE TABLE IF NOT EXISTS `vendor_orders` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) NOT NULL,
  `order_id` int(191) NOT NULL,
  `qty` int(191) NOT NULL,
  `price` double NOT NULL,
  `order_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('pending','processing','completed','declined','on delivery') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.vendor_orders: ~0 rows (approximately)
/*!40000 ALTER TABLE `vendor_orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `vendor_orders` ENABLE KEYS */;

-- Dumping structure for table ebaskat.wishlists
CREATE TABLE IF NOT EXISTS `wishlists` (
  `id` int(191) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(191) unsigned NOT NULL,
  `product_id` int(191) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.wishlists: ~0 rows (approximately)
/*!40000 ALTER TABLE `wishlists` DISABLE KEYS */;
/*!40000 ALTER TABLE `wishlists` ENABLE KEYS */;

-- Dumping structure for table ebaskat.withdraws
CREATE TABLE IF NOT EXISTS `withdraws` (
  `id` int(191) NOT NULL AUTO_INCREMENT,
  `user_id` int(191) DEFAULT NULL,
  `method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `acc_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `iban` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `acc_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `swift` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `amount` float DEFAULT NULL,
  `fee` float DEFAULT '0',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `status` enum('pending','completed','rejected') NOT NULL DEFAULT 'pending',
  `type` enum('user','vendor') NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- Dumping data for table ebaskat.withdraws: ~0 rows (approximately)
/*!40000 ALTER TABLE `withdraws` DISABLE KEYS */;
/*!40000 ALTER TABLE `withdraws` ENABLE KEYS */;

/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
