/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.11-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: gyannewsoftware_booking23
-- ------------------------------------------------------
-- Server version	10.11.11-MariaDB

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

--
-- Table structure for table `bravo_airline`
--

DROP TABLE IF EXISTS `bravo_airline`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_airline` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_airline`
--

LOCK TABLES `bravo_airline` WRITE;
/*!40000 ALTER TABLE `bravo_airline` DISABLE KEYS */;
INSERT INTO `bravo_airline` (`id`, `name`, `image_id`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `author_id`) VALUES (1,'Reynoldborough',203,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(2,'Lake Curtshire',203,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(3,'Skilesfort',203,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(4,'West Hymanton',205,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(5,'Port Genevievestad',204,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(6,'Kuhlmanfurt',204,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(7,'Lloydmouth',205,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(8,'Kertzmannchester',205,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(9,'Lake Stanfordton',204,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(10,'West Josieberg',203,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(11,'New Jessika',205,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(12,'North Jadynstad',205,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(13,'North Reginald',203,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(14,'North Kristinastad',204,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(15,'Lennaburgh',203,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(16,'Gleichnerland',205,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(17,'South Brent',204,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(18,'North Chadd',204,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(19,'South Otto',203,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(20,'South Elouise',204,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(21,'Biman Bangladesh Airlines',204,1,1,NULL,'2023-03-27 15:43:21','2023-03-27 15:43:25',NULL);
/*!40000 ALTER TABLE `bravo_airline` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_airport`
--

DROP TABLE IF EXISTS `bravo_airport`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_airport` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) DEFAULT NULL,
  `code` varchar(191) NOT NULL,
  `address` varchar(191) DEFAULT NULL,
  `country` varchar(20) DEFAULT NULL,
  `location_id` int(11) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `map_lat` varchar(20) DEFAULT NULL,
  `map_lng` varchar(20) DEFAULT NULL,
  `map_zoom` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `status` varchar(30) DEFAULT 'publish',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_airport_code_unique` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_airport`
--

LOCK TABLES `bravo_airport` WRITE;
/*!40000 ALTER TABLE `bravo_airport` DISABLE KEYS */;
INSERT INTO `bravo_airport` (`id`, `name`, `code`, `address`, `country`, `location_id`, `description`, `map_lat`, `map_lng`, `map_zoom`, `create_user`, `update_user`, `status`, `created_at`, `updated_at`, `author_id`) VALUES (1,'Reedbury','883','95601 Kaci Bypass\nWest Robynside, HI 37440',NULL,7,'Est assumenda et nisi nostrum ex quasi dolorem. Sunt voluptas consequatur deleniti ea aliquam ullam quas nemo. Reprehenderit et non impedit consequatur fugit.','-44.714886','-23.551641',8,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(2,'Libbystad','41','5795 Kohler Motorway Suite 336\nEast Jimmie, PA 46841',NULL,3,'Voluptatibus in optio libero beatae non sequi. Ut sunt esse minima sed nulla sit. Hic delectus officia sed omnis. Voluptate doloribus non possimus fuga impedit qui.','33.80041','117.12164',10,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(3,'Rosenbaumborough','792','321 Reichel Walks Suite 072\nSouth Ebony, MD 58390',NULL,5,'Ut dolor eos suscipit nisi maiores facilis. Totam eos voluptates est quis voluptatem sequi. Omnis repellat laudantium id dolores vel.','-50.19615','107.282258',10,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(4,'Anissaview','58','47260 Torphy Mountains Suite 630\nModestafurt, UT 33157-8902',NULL,2,'Qui voluptatem molestiae dolores quia ipsum in excepturi. Aperiam et atque hic repudiandae. Qui dignissimos eum quisquam velit eum atque.','-37.215666','53.183534',9,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(5,'Daniellefurt','307','673 Miller Falls\nWelchton, TN 27551',NULL,7,'Ipsum et qui voluptatem dolores laudantium delectus. Officia ad voluptate modi. Eum quia alias non tempora culpa perspiciatis aut.','-64.854768','-25.852528',9,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(6,'Jaysonchester','21','4238 Hessel Field Suite 999\nLake Clement, WI 25362-1812',NULL,8,'Quo amet assumenda perspiciatis doloremque dicta incidunt. Quod id eius perspiciatis. Qui ex rerum velit mollitia aut aut. Quis ut magni saepe explicabo consequatur.','-3.141922','166.55376',9,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(7,'Nicolashaven','527','251 Dietrich Court\nWaelchiview, OR 88680',NULL,1,'Ut quaerat qui mollitia ut est beatae. Omnis repellat sint iste est. Laborum eum consequatur eligendi qui. Consequatur quia voluptatem totam eius molestiae eos tempore.','27.356325','-90.098052',10,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(8,'Nitzscheville','286','109 Gulgowski Inlet\nWest Opal, MS 22569',NULL,2,'Tempora impedit rerum iure quam. Magni quia adipisci adipisci autem suscipit.','-86.262098','77.124147',8,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(9,'Terryville','388','2195 DuBuque Gardens Apt. 660\nJohnsonbury, MA 69898',NULL,6,'Debitis quia consequatur perspiciatis qui qui veniam facilis. Sint quia debitis non. Occaecati et velit quisquam dolore porro quia sunt et.','-38.296709','45.379802',10,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(10,'Whitebury','315','9453 Brandy Parkway\nAnabelberg, NV 82493-3035',NULL,8,'Modi placeat est est nostrum. Quia enim minus vitae porro sint. Officia excepturi in minima. Debitis voluptas et nobis aperiam consequuntur similique omnis sit.','-70.903277','151.959322',9,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(11,'South Leannville','975','902 Wilkinson Locks Apt. 547\nNorth Yoshikobury, NH 63420',NULL,5,'Aspernatur aut vel aperiam eligendi ipsum voluptates sed quod. Omnis error ut unde est. Incidunt fugit hic sint quasi sunt consequuntur. Et amet ipsa at corporis aut.','-88.230231','-52.669841',8,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(12,'New Marisol','35','6957 Moen Valleys Apt. 243\nPort Goldaland, OH 58579',NULL,1,'Sed quia qui rerum deleniti sint quasi. Delectus quasi ut sint omnis culpa quia. Dicta ipsa odit quis assumenda qui quam.','-0.780347','115.91109',9,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(13,'Walshview','723','412 Petra Shoal\nLake Billyborough, IN 25146-5152',NULL,1,'Aut ut rerum ullam. Impedit doloremque consequatur et ut voluptatem vitae animi. Magnam blanditiis quaerat quaerat distinctio sed consequatur voluptates.','57.921289','-68.086125',8,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(14,'Tateland','606','212 Ritchie Plains Suite 745\nPort Raquel, AR 73859-2611',NULL,2,'Facere voluptatum et itaque culpa eligendi. Nihil consequatur debitis cum dolores quas. Neque dolores quas ducimus provident quos rerum.','-2.329483','-40.083494',8,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(15,'Funkshire','735','91163 Addie Avenue Apt. 841\nNienowborough, AZ 82837-5822',NULL,10,'Tempore labore vero in consectetur consectetur. Minima voluptatem blanditiis voluptatum magni natus. Voluptatum sit quo quaerat occaecati ut minima eos ipsa.','28.52036','29.439054',8,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(16,'South Keelyton','249','2513 Eulalia Prairie Suite 944\nNew Jarret, HI 01315-6880',NULL,7,'Doloremque quo est minima a quae voluptatem. Voluptatum dolorum hic sit dolores. Modi ut quas quia sit nostrum ab facere. Nobis autem nobis fugit beatae qui fuga voluptatibus.','-82.722421','119.928178',10,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(17,'East Kaileeport','517','766 Jaren Valleys Suite 056\nLonietown, MI 52755-1657',NULL,10,'Voluptatem omnis incidunt tenetur sit. Fugit omnis ad sit temporibus sit et. Reprehenderit incidunt sed minima nesciunt.','-7.949106','-8.325289',8,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(18,'Lake Karelleshire','793','110 Schimmel Heights\nNorth Neha, HI 40955',NULL,9,'Rerum harum consequuntur illo vitae rerum tempore. Ut libero suscipit saepe nam. Quia corrupti aut et minus eos animi nihil. Sunt magni sed voluptatem laboriosam aut amet.','77.691301','-18.842234',8,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(19,'Asastad','11','789 Grady Cliffs Suite 076\nWest Reedmouth, TX 72942',NULL,10,'Voluptatem temporibus ullam beatae et in neque perspiciatis. Vel eveniet aut dicta perferendis. Velit enim voluptatem voluptatem. Deserunt repudiandae quibusdam incidunt sequi in voluptatem repellat.','75.310987','146.441449',8,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(20,'East Kipville','865','158 Emmy Terrace\nWest Litzy, NJ 18899',NULL,9,'Omnis illo mollitia perferendis porro fugiat. Id similique voluptatem odit voluptate inventore nemo. Sunt delectus ipsa quam saepe. Minima occaecati dolorem a maiores laborum magnam.','35.41452','148.781202',10,NULL,NULL,'publish','2023-03-23 08:49:30','2023-03-23 08:49:30',NULL);
/*!40000 ALTER TABLE `bravo_airport` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_attrs`
--

DROP TABLE IF EXISTS `bravo_attrs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_attrs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `service` varchar(50) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `display_type` varchar(255) DEFAULT NULL,
  `hide_in_single` tinyint(4) DEFAULT NULL,
  `hide_in_filter_search` tinyint(4) DEFAULT NULL,
  `position` smallint(6) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_attrs`
--

LOCK TABLES `bravo_attrs` WRITE;
/*!40000 ALTER TABLE `bravo_attrs` DISABLE KEYS */;
INSERT INTO `bravo_attrs` (`id`, `name`, `slug`, `service`, `create_user`, `update_user`, `created_at`, `updated_at`, `deleted_at`, `display_type`, `hide_in_single`, `hide_in_filter_search`, `position`) VALUES (1,'Travel Styles','travel-styles','tour',NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL,NULL,NULL),
(2,'Facilities','facilities','tour',NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL,NULL,NULL),
(3,'Space Type','space-type','space',NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL,NULL,NULL),
(4,'Amenities','amenities','space',NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL,NULL,NULL),
(5,'Property type','property-type','hotel',NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL,NULL,NULL),
(6,'Facilities','facilities-1','hotel',NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL,NULL,NULL),
(7,'Hotel Service','hotel-service','hotel',NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL,NULL,NULL),
(8,'Room Amenities','room-amenities','hotel_room',NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL,NULL,NULL),
(9,'Car Type','car-type','car',NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,1,NULL,NULL),
(10,'Car Features','car-features','car',NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL,NULL,NULL),
(11,'Event Type','event-type','event',NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL,NULL,NULL),
(12,'Seat Type','flight-type','flight',1,NULL,'2023-03-23 08:49:30','2024-03-23 06:24:09',NULL,NULL,NULL,NULL,NULL),
(13,'Inflight Experience','inflight-experience','flight',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL),
(14,'Boat Type','boat-type','boat',NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,1,NULL,NULL),
(15,'Amenities','amenities-1','boat',NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL,NULL,NULL),
(16,'Fair Type','flight-stoppage','flight',1,1,'2024-03-22 06:10:46','2024-03-23 06:22:52',NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `bravo_attrs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_attrs_translations`
--

DROP TABLE IF EXISTS `bravo_attrs_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_attrs_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` bigint(20) DEFAULT NULL,
  `locale` varchar(10) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_attrs_translations_origin_id_locale_unique` (`origin_id`,`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_attrs_translations`
--

LOCK TABLES `bravo_attrs_translations` WRITE;
/*!40000 ALTER TABLE `bravo_attrs_translations` DISABLE KEYS */;
INSERT INTO `bravo_attrs_translations` (`id`, `origin_id`, `locale`, `name`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,16,'en','Fair Type',1,1,'2024-03-22 06:10:46','2024-03-23 06:22:53'),
(2,12,'en','Seat Type',1,NULL,'2024-03-23 06:24:09','2024-03-23 06:24:09');
/*!40000 ALTER TABLE `bravo_attrs_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_boat_dates`
--

DROP TABLE IF EXISTS `bravo_boat_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_boat_dates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `target_id` bigint(20) DEFAULT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `price_per_hour` decimal(12,2) DEFAULT NULL,
  `price_per_day` decimal(12,2) DEFAULT NULL,
  `number` tinyint(4) DEFAULT NULL,
  `active` tinyint(4) DEFAULT 0,
  `note_to_customer` text DEFAULT NULL,
  `note_to_admin` text DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_boat_dates`
--

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

--
-- Table structure for table `bravo_boat_term`
--

DROP TABLE IF EXISTS `bravo_boat_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_boat_term` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` int(11) DEFAULT NULL,
  `target_id` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_boat_term`
--

LOCK TABLES `bravo_boat_term` WRITE;
/*!40000 ALTER TABLE `bravo_boat_term` DISABLE KEYS */;
INSERT INTO `bravo_boat_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,92,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(2,93,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(3,95,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(4,98,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(5,92,2,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(6,93,2,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(7,94,2,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(8,95,2,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(9,98,2,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(10,92,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(11,93,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(12,94,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(13,95,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(14,96,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(15,97,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(16,91,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(17,92,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(18,94,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(19,95,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(20,91,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(21,92,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(22,95,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(23,96,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(24,97,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(25,98,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(26,91,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(27,92,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(28,94,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(29,95,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(30,96,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(31,98,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(32,91,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(33,93,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(34,94,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(35,96,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(36,97,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(37,98,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(38,93,8,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(39,94,8,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(40,95,8,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(41,98,8,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(42,91,9,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(43,93,9,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(44,96,9,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(45,91,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(46,92,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(47,94,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(48,95,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(49,96,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(50,97,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(51,93,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(52,94,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(53,95,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(54,96,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(55,97,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(56,92,12,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(57,95,12,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(58,96,12,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(59,98,12,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(60,91,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(61,92,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(62,93,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(63,94,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(64,95,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(65,97,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(66,98,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(67,99,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(68,101,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(69,102,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(70,103,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(71,104,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(72,99,2,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(73,101,2,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(74,103,2,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(75,104,2,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(76,99,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(77,100,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(78,101,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(79,102,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(80,103,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(81,104,3,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(82,99,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(83,100,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(84,101,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(85,103,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(86,104,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(87,99,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(88,100,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(89,101,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(90,102,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(91,103,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(92,104,5,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(93,99,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(94,100,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(95,101,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(96,102,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(97,104,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(98,100,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(99,101,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(100,102,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(101,103,7,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(102,99,8,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(103,100,8,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(104,101,8,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(105,102,8,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(106,99,9,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(107,100,9,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(108,101,9,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(109,102,9,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(110,99,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(111,100,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(112,101,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(113,102,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(114,103,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(115,104,10,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(116,100,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(117,101,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(118,102,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(119,103,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(120,104,11,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(121,99,12,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(122,101,12,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(123,102,12,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(124,103,12,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(125,99,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(126,100,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(127,101,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(128,102,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(129,104,13,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31');
/*!40000 ALTER TABLE `bravo_boat_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_boat_translations`
--

DROP TABLE IF EXISTS `bravo_boat_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_boat_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `specs` text DEFAULT NULL,
  `cancel_policy` text DEFAULT NULL,
  `terms_information` text DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `include` text DEFAULT NULL,
  `exclude` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_boat_translations_locale_index` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_boat_translations`
--

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

--
-- Table structure for table `bravo_boats`
--

DROP TABLE IF EXISTS `bravo_boats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_boats` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
  `content` text DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `banner_image_id` int(11) DEFAULT NULL,
  `location_id` int(11) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `map_lat` varchar(20) DEFAULT NULL,
  `map_lng` varchar(20) DEFAULT NULL,
  `map_zoom` int(11) DEFAULT NULL,
  `is_featured` tinyint(4) DEFAULT NULL,
  `gallery` varchar(255) DEFAULT NULL,
  `video` varchar(255) DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `number` tinyint(4) DEFAULT NULL,
  `price_per_hour` decimal(12,2) DEFAULT NULL,
  `price_per_day` decimal(12,2) DEFAULT NULL,
  `min_price` decimal(12,2) DEFAULT NULL,
  `enable_extra_price` tinyint(4) DEFAULT NULL,
  `extra_price` text DEFAULT NULL,
  `max_guest` int(11) DEFAULT NULL,
  `cabin` int(11) DEFAULT NULL,
  `length` varchar(255) DEFAULT NULL,
  `speed` varchar(255) DEFAULT NULL,
  `specs` text DEFAULT NULL,
  `cancel_policy` text DEFAULT NULL,
  `terms_information` text DEFAULT NULL,
  `review_score` decimal(2,1) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `default_state` tinyint(4) DEFAULT 1,
  `enable_service_fee` tinyint(4) DEFAULT NULL,
  `service_fee` text DEFAULT NULL,
  `min_day_before_booking` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `include` text DEFAULT NULL,
  `exclude` text DEFAULT NULL,
  `start_time_booking` varchar(191) DEFAULT NULL,
  `end_time_booking` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_boats_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_boats`
--

LOCK TABLES `bravo_boats` WRITE;
/*!40000 ALTER TABLE `bravo_boats` DISABLE KEYS */;
INSERT INTO `bravo_boats` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `faqs`, `number`, `price_per_hour`, `price_per_day`, `min_price`, `enable_extra_price`, `extra_price`, `max_guest`, `cabin`, `length`, `speed`, `specs`, `cancel_policy`, `terms_information`, `review_score`, `status`, `default_state`, `enable_service_fee`, `service_fee`, `min_day_before_booking`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `author_id`, `include`, `exclude`, `start_time_booking`, `end_time_booking`) VALUES (1,'Cruising Yacht','cruising-yacht','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',208,206,1,'Arrondissement de Paris','21.054831','105.796077',12,0,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,100.00,500.00,100.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',5,1,'12m','26km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.5,'publish',1,NULL,NULL,NULL,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,NULL,NULL,NULL,NULL),
(2,'Summer Breeze','summer-breeze','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',209,206,1,'Arrondissement de Paris','21.039771','105.777203',12,0,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,150.00,500.00,150.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',7,3,'10m','31km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.3,'publish',1,NULL,NULL,NULL,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,NULL,NULL,NULL,NULL),
(3,'Blue Moon Cruising','blue-moon-cruising','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',209,206,3,'Arrondissement de Paris','21.031217','105.773698',12,0,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,200.00,800.00,200.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',8,5,'14m','30km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.5,'publish',1,NULL,NULL,NULL,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,NULL,NULL,NULL,NULL),
(4,'BOAT 1992 ALISON','boat-1992-alison','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',210,206,1,'Arrondissement de Paris','21.020161','105.789655',12,0,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,50.00,300.00,50.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',8,5,'18m','31km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.5,'publish',1,NULL,NULL,NULL,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,NULL,NULL,NULL,NULL),
(5,'Andiamo MX-3','andiamo-mx-3','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',211,206,5,'Arrondissement de Paris','21.014873','105.794117',12,1,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,250.00,650.00,250.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',7,3,'16m','26km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',5.0,'publish',1,NULL,NULL,NULL,1,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,NULL,NULL,NULL,NULL),
(6,'Blue Dream TC-20','blue-dream-tc-20','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',212,206,1,'Arrondissement de Paris','21.018398','105.812820',12,1,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,130.00,670.00,130.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',7,5,'16m','28km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.3,'publish',1,NULL,NULL,NULL,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,NULL,NULL,NULL,NULL),
(7,'Blue Moon YC-300','blue-moon-yc-300','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',213,206,1,'Arrondissement de Paris','21.025769','105.829635',12,1,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,130.00,800.00,130.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',7,4,'17m','26km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',5.0,'publish',1,NULL,NULL,NULL,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,NULL,NULL,NULL,NULL),
(8,'Carpe Diem LA','carpe-diem-la','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',214,206,1,'Arrondissement de Paris','21.017437','105.831179',12,0,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,200.00,750.00,200.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',7,5,'19m','26km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.3,'publish',1,NULL,NULL,NULL,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,NULL,NULL,NULL,NULL),
(9,'Destiny 6','destiny-6','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',215,206,6,'Arrondissement de Paris','21.047879','105.809731',12,0,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,180.00,400.00,180.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',8,3,'13m','25km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.8,'publish',1,NULL,NULL,NULL,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,NULL,NULL,NULL,NULL),
(10,'Endless Summer W-10','endless-summer-w-10','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',216,206,7,'Arrondissement de Paris','21.025449','105.804412',12,1,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,230.00,650.00,230.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',12,4,'19m','25km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.8,'publish',1,NULL,NULL,NULL,6,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,NULL,NULL,NULL,NULL),
(11,'Freedom M2','freedom-m2','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',217,206,8,'Arrondissement de Paris','21.020001','105.836670',12,0,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,50.00,200.00,50.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',8,2,'11m','30km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.3,'publish',1,NULL,NULL,NULL,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,NULL,NULL,NULL,NULL),
(12,'Ohana 3X','ohana-3x','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',218,206,3,'Arrondissement de Paris','21.051244','105.777988',12,1,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,80.00,200.00,80.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',12,2,'18m','29km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.5,'publish',1,NULL,NULL,NULL,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,NULL,NULL,NULL,NULL),
(13,'My Way 100','my-way-100','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',219,206,1,'Arrondissement de Paris','21.053326','105.841475',12,0,'220,221,222,223,224,225','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the boat can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,150.00,300.00,150.00,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',8,5,'14m','27km/h','{\"0\":{\"title\":\"Manufacturer\",\"content\":\"Sunrise\"},\"1\":{\"title\":\"Boat skipper\",\"content\":\"Bareboat\"},\"2\":{\"title\":\"Model\",\"content\":\"Summer Breeze\"},\"3\":{\"title\":\"Year\",\"content\":\"2010\"},\"4\":{\"title\":\"Number of crew\",\"content\":\"5\"},\"5\":{\"title\":\"Engines\",\"content\":\"Diesel\"},\"6\":{\"title\":\"Fuel\",\"content\":\"Composite\"}}','Full refund up to 4 days prior.','<p>For Sanitary purposes ONLY, although there is a working toilet and shower, we\'ve deactivated the shower and the toliet is for limited use (urine only..pardon the graphic detail!). This keeps the boat clean and odor-free for all of our guests.&nbsp; Sinks can be used.</p>\r\n<p>Booking is weather pending. Because of the safety factors associated with the boat and inclement weather, If forecast shows rain, strong winds etc, the Host will communicate with Guest 24-48hrs in advance to mutually cancel/reschedule reservation. No smoking in boat cabin.</p>',4.0,'publish',1,NULL,NULL,NULL,4,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `bravo_boats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_booking_coupons`
--

DROP TABLE IF EXISTS `bravo_booking_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_booking_coupons` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `booking_id` bigint(20) DEFAULT NULL,
  `booking_status` varchar(30) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_model` varchar(191) DEFAULT NULL,
  `coupon_code` varchar(191) DEFAULT NULL,
  `coupon_amount` decimal(10,2) DEFAULT 0.00,
  `coupon_data` text DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_booking_coupons`
--

LOCK TABLES `bravo_booking_coupons` WRITE;
/*!40000 ALTER TABLE `bravo_booking_coupons` DISABLE KEYS */;
INSERT INTO `bravo_booking_coupons` (`id`, `booking_id`, `booking_status`, `object_id`, `object_model`, `coupon_code`, `coupon_amount`, `coupon_data`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,8,'draft',6,'hotel','Asad',10.00,'{\"id\":1,\"code\":\"Asad\",\"name\":\"asad\",\"amount\":10,\"discount_type\":\"fixed\",\"end_date\":null,\"min_total\":100,\"max_total\":10000,\"services\":null,\"only_for_user\":null,\"status\":\"publish\",\"quantity_limit\":1,\"limit_per_user\":1,\"image_id\":227,\"create_user\":1,\"update_user\":null,\"deleted_at\":null,\"created_at\":\"2023-09-19T06:29:41.000000Z\",\"updated_at\":\"2023-09-19T06:29:41.000000Z\"}',11,NULL,'2023-09-19 06:30:18','2023-09-19 06:30:18');
/*!40000 ALTER TABLE `bravo_booking_coupons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_booking_meta`
--

DROP TABLE IF EXISTS `bravo_booking_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_booking_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `booking_id` int(11) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `val` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=107 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_booking_meta`
--

LOCK TABLES `bravo_booking_meta` WRITE;
/*!40000 ALTER TABLE `bravo_booking_meta` DISABLE KEYS */;
INSERT INTO `bravo_booking_meta` (`id`, `booking_id`, `name`, `val`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,1,'duration',NULL,NULL,NULL,NULL,NULL),
(2,1,'base_price','300.00',NULL,NULL,NULL,NULL),
(3,1,'sale_price',NULL,NULL,NULL,NULL,NULL),
(4,1,'guests','1',NULL,NULL,NULL,NULL),
(5,1,'adults','1',NULL,NULL,NULL,NULL),
(6,1,'children','0',NULL,NULL,NULL,NULL),
(7,1,'extra_price','[]',NULL,NULL,NULL,NULL),
(8,1,'locale','en',NULL,NULL,NULL,NULL),
(9,1,'how_to_pay','',NULL,NULL,NULL,NULL),
(10,1,'razorpay_order_id','order_LUwrMwecd0XwMu',NULL,NULL,NULL,NULL),
(11,1,'razorpay_order_log','{\"id\":\"order_LUwrMwecd0XwMu\",\"entity\":\"order\",\"amount\":150000,\"amount_paid\":0,\"amount_due\":150000,\"currency\":\"INR\",\"receipt\":\"2\",\"offer_id\":null,\"status\":\"created\",\"attempts\":0,\"notes\":[],\"created_at\":1679570705}',NULL,NULL,NULL,NULL),
(12,2,'duration',NULL,NULL,NULL,NULL,NULL),
(13,2,'base_price','199',NULL,NULL,NULL,NULL),
(14,2,'sale_price','0',NULL,NULL,NULL,NULL),
(15,2,'extra_price','[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\",\"total\":100},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\",\"total\":200}]',NULL,NULL,NULL,NULL),
(16,2,'tmp_dates','{\"2023-05-18\":{\"number\":3,\"price\":199,\"status\":1},\"2023-05-19\":{\"number\":3,\"price\":199,\"status\":1},\"2023-05-20\":{\"number\":3,\"price\":199,\"status\":1},\"2023-05-21\":{\"number\":3,\"price\":199,\"status\":1},\"2023-05-22\":{\"number\":3,\"price\":199,\"status\":1},\"2023-05-23\":{\"number\":3,\"price\":199,\"status\":1},\"2023-05-24\":{\"number\":3,\"price\":199,\"status\":1},\"2023-05-25\":{\"number\":3,\"price\":199,\"status\":1},\"2023-05-26\":{\"number\":3,\"price\":199,\"status\":1}}',NULL,NULL,NULL,NULL),
(17,3,'duration',NULL,NULL,NULL,NULL,NULL),
(18,3,'base_price','400',NULL,NULL,NULL,NULL),
(19,3,'sale_price','0',NULL,NULL,NULL,NULL),
(20,3,'extra_price','[]',NULL,NULL,NULL,NULL),
(21,3,'tmp_dates','{\"2023-05-27\":{\"number\":4,\"price\":400,\"status\":1},\"2023-05-28\":{\"number\":4,\"price\":400,\"status\":1},\"2023-05-29\":{\"number\":4,\"price\":400,\"status\":1},\"2023-05-30\":{\"number\":4,\"price\":400,\"status\":1},\"2023-05-31\":{\"number\":4,\"price\":400,\"status\":1},\"2023-06-01\":{\"number\":4,\"price\":400,\"status\":1},\"2023-06-02\":{\"number\":4,\"price\":400,\"status\":1},\"2023-06-03\":{\"number\":4,\"price\":400,\"status\":1},\"2023-06-04\":{\"number\":4,\"price\":400,\"status\":1}}',NULL,NULL,NULL,NULL),
(22,3,'locale','en',NULL,NULL,NULL,NULL),
(23,3,'how_to_pay','',NULL,NULL,NULL,NULL),
(24,4,'duration',NULL,NULL,NULL,NULL,NULL),
(25,4,'base_price','200',NULL,NULL,NULL,NULL),
(26,4,'sale_price','0',NULL,NULL,NULL,NULL),
(27,4,'extra_price','[]',NULL,NULL,NULL,NULL),
(28,4,'tmp_dates','{\"2023-05-28\":{\"number\":4,\"price\":200,\"status\":1},\"2023-05-29\":{\"number\":4,\"price\":200,\"status\":1},\"2023-05-30\":{\"number\":4,\"price\":200,\"status\":1},\"2023-05-31\":{\"number\":4,\"price\":200,\"status\":1},\"2023-06-01\":{\"number\":4,\"price\":200,\"status\":1},\"2023-06-02\":{\"number\":4,\"price\":200,\"status\":1},\"2023-06-03\":{\"number\":4,\"price\":200,\"status\":1}}',NULL,NULL,NULL,NULL),
(29,5,'duration',NULL,NULL,NULL,NULL,NULL),
(30,5,'base_price','350.00',NULL,NULL,NULL,NULL),
(31,5,'sale_price',NULL,NULL,NULL,NULL,NULL),
(32,5,'guests','1',NULL,NULL,NULL,NULL),
(33,5,'adults','1',NULL,NULL,NULL,NULL),
(34,5,'children','0',NULL,NULL,NULL,NULL),
(35,5,'extra_price','[]',NULL,NULL,NULL,NULL),
(36,5,'locale','en',NULL,NULL,NULL,NULL),
(37,5,'how_to_pay','',NULL,NULL,NULL,NULL),
(38,6,'duration',NULL,NULL,NULL,NULL,NULL),
(39,6,'base_price','700.00',NULL,NULL,NULL,NULL),
(40,6,'sale_price',NULL,NULL,NULL,NULL,NULL),
(41,6,'guests','1',NULL,NULL,NULL,NULL),
(42,6,'adults','1',NULL,NULL,NULL,NULL),
(43,6,'children','0',NULL,NULL,NULL,NULL),
(44,6,'extra_price','[]',NULL,NULL,NULL,NULL),
(45,6,'locale','en',NULL,NULL,NULL,NULL),
(46,6,'how_to_pay','',NULL,NULL,NULL,NULL),
(47,7,'duration',NULL,NULL,NULL,NULL,NULL),
(48,7,'base_price','550.00',NULL,NULL,NULL,NULL),
(49,7,'sale_price',NULL,NULL,NULL,NULL,NULL),
(50,7,'guests','1',NULL,NULL,NULL,NULL),
(51,7,'adults','1',NULL,NULL,NULL,NULL),
(52,7,'children','0',NULL,NULL,NULL,NULL),
(53,7,'extra_price','[]',NULL,NULL,NULL,NULL),
(54,8,'duration',NULL,NULL,NULL,NULL,NULL),
(55,8,'base_price','700.00',NULL,NULL,NULL,NULL),
(56,8,'sale_price',NULL,NULL,NULL,NULL,NULL),
(57,8,'guests','1',NULL,NULL,NULL,NULL),
(58,8,'adults','1',NULL,NULL,NULL,NULL),
(59,8,'children','0',NULL,NULL,NULL,NULL),
(60,8,'extra_price','[]',NULL,NULL,NULL,NULL),
(61,9,'duration','7',NULL,NULL,NULL,NULL),
(62,9,'start_time','17:00',NULL,NULL,NULL,NULL),
(63,9,'total_tickets','1',NULL,NULL,NULL,NULL),
(64,9,'extra_price','[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\",\"total\":\"100\"}]',NULL,NULL,NULL,NULL),
(65,9,'base_price','1181',NULL,NULL,NULL,NULL),
(66,9,'booking_type','ticket',NULL,NULL,NULL,NULL),
(67,9,'ticket_types','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"1\"}]',NULL,NULL,NULL,NULL),
(68,9,'locale','en',NULL,NULL,NULL,NULL),
(69,9,'how_to_pay','',NULL,NULL,NULL,NULL),
(70,10,'duration',NULL,NULL,NULL,NULL,NULL),
(71,10,'base_price','700.00',NULL,NULL,NULL,NULL),
(72,10,'sale_price',NULL,NULL,NULL,NULL,NULL),
(73,10,'guests','3',NULL,NULL,NULL,NULL),
(74,10,'adults','2',NULL,NULL,NULL,NULL),
(75,10,'children','1',NULL,NULL,NULL,NULL),
(76,10,'extra_price','[]',NULL,NULL,NULL,NULL),
(77,10,'locale','en',NULL,NULL,NULL,NULL),
(78,10,'how_to_pay','',NULL,NULL,NULL,NULL),
(79,11,'duration','5',NULL,NULL,NULL,NULL),
(80,11,'base_price','722.00',NULL,NULL,NULL,NULL),
(81,11,'guests','1',NULL,NULL,NULL,NULL),
(82,11,'extra_price','[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\",\"total\":\"100\"}]',NULL,NULL,NULL,NULL),
(83,11,'person_types','[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\",\"number\":\"1\"}]',NULL,NULL,NULL,NULL),
(84,11,'discount_by_people','[]',NULL,NULL,NULL,NULL),
(85,11,'locale','en',NULL,NULL,NULL,NULL),
(86,11,'how_to_pay','',NULL,NULL,NULL,NULL),
(87,12,'duration',NULL,NULL,NULL,NULL,NULL),
(88,12,'base_price','400.00',NULL,NULL,NULL,NULL),
(89,12,'sale_price','350.00',NULL,NULL,NULL,NULL),
(90,12,'guests','6',NULL,NULL,NULL,NULL),
(91,12,'adults','6',NULL,NULL,NULL,NULL),
(92,12,'children','0',NULL,NULL,NULL,NULL),
(93,12,'extra_price','[]',NULL,NULL,NULL,NULL),
(94,12,'tmp_dates','[]',NULL,NULL,NULL,NULL),
(95,12,'booking_type','by_day',NULL,NULL,NULL,NULL),
(96,13,'duration',NULL,NULL,NULL,NULL,NULL),
(97,13,'base_price','400.00',NULL,NULL,NULL,NULL),
(98,13,'sale_price','350.00',NULL,NULL,NULL,NULL),
(99,13,'guests','2',NULL,NULL,NULL,NULL),
(100,13,'adults','2',NULL,NULL,NULL,NULL),
(101,13,'children','0',NULL,NULL,NULL,NULL),
(102,13,'extra_price','[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\",\"total\":\"100\"}]',NULL,NULL,NULL,NULL),
(103,13,'tmp_dates','[]',NULL,NULL,NULL,NULL),
(104,13,'booking_type','by_day',NULL,NULL,NULL,NULL),
(105,13,'locale','en',NULL,NULL,NULL,NULL),
(106,13,'how_to_pay','',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `bravo_booking_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_booking_passengers`
--

DROP TABLE IF EXISTS `bravo_booking_passengers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_booking_passengers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `flight_id` int(11) DEFAULT NULL,
  `flight_seat_id` int(11) DEFAULT NULL,
  `booking_id` int(11) DEFAULT NULL,
  `seat_type` varchar(191) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `first_name` varchar(191) DEFAULT NULL,
  `last_name` varchar(191) DEFAULT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `dob` datetime DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `id_card` varchar(191) DEFAULT NULL,
  `object_model` varchar(30) NOT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_booking_passengers_booking_id_index` (`booking_id`),
  KEY `bravo_booking_passengers_object_model_object_id_index` (`object_model`,`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_booking_passengers`
--

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

--
-- Table structure for table `bravo_booking_payment_meta`
--

DROP TABLE IF EXISTS `bravo_booking_payment_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_booking_payment_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_id` int(11) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `val` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_booking_payment_meta_payment_id_name_index` (`payment_id`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_booking_payment_meta`
--

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

--
-- Table structure for table `bravo_booking_payments`
--

DROP TABLE IF EXISTS `bravo_booking_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_booking_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(64) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_model` varchar(40) DEFAULT NULL,
  `meta` text DEFAULT NULL,
  `booking_id` int(11) DEFAULT NULL,
  `payment_gateway` varchar(50) DEFAULT NULL,
  `amount` decimal(10,2) DEFAULT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `converted_amount` decimal(10,2) DEFAULT NULL,
  `converted_currency` varchar(10) DEFAULT NULL,
  `exchange_rate` decimal(10,2) DEFAULT NULL,
  `status` varchar(30) DEFAULT NULL,
  `logs` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `wallet_transaction_id` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_booking_payments`
--

LOCK TABLES `bravo_booking_payments` WRITE;
/*!40000 ALTER TABLE `bravo_booking_payments` DISABLE KEYS */;
INSERT INTO `bravo_booking_payments` (`id`, `code`, `object_id`, `object_model`, `meta`, `booking_id`, `payment_gateway`, `amount`, `currency`, `converted_amount`, `converted_currency`, `exchange_rate`, `status`, `logs`, `create_user`, `update_user`, `deleted_at`, `wallet_transaction_id`, `created_at`, `updated_at`, `user_id`) VALUES (1,'cdb529145ee9e528db16fd381868a148',NULL,NULL,NULL,1,'razorpay_gateway',1500.00,'inr',NULL,NULL,NULL,'draft',NULL,7,NULL,NULL,NULL,'2023-03-23 15:53:35','2023-03-23 15:53:35',NULL),
(2,'ca63b55c840db76afd2f60dc3d3c4c29',NULL,NULL,NULL,1,'razorpay_gateway',1500.00,'inr',NULL,NULL,NULL,'draft',NULL,7,NULL,NULL,NULL,'2023-03-23 15:55:05','2023-03-23 15:55:05',NULL);
/*!40000 ALTER TABLE `bravo_booking_payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_booking_time_slots`
--

DROP TABLE IF EXISTS `bravo_booking_time_slots`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_booking_time_slots` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `booking_id` int(11) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_model` varchar(40) DEFAULT NULL,
  `start_time` time DEFAULT NULL,
  `end_time` time DEFAULT NULL,
  `duration` double(255,2) DEFAULT NULL,
  `duration_unit` varchar(255) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_booking_time_slots`
--

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

--
-- Table structure for table `bravo_bookings`
--

DROP TABLE IF EXISTS `bravo_bookings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_bookings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(64) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `payment_id` int(11) DEFAULT NULL,
  `gateway` varchar(50) DEFAULT NULL,
  `object_id` int(11) DEFAULT NULL,
  `object_model` varchar(255) DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `total` decimal(10,2) DEFAULT NULL,
  `total_guests` int(11) DEFAULT NULL,
  `currency` varchar(5) DEFAULT NULL,
  `status` varchar(30) DEFAULT NULL,
  `deposit` decimal(10,2) DEFAULT NULL,
  `deposit_type` varchar(30) DEFAULT NULL,
  `commission` decimal(10,2) DEFAULT NULL,
  `commission_type` varchar(150) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `first_name` varchar(255) DEFAULT NULL,
  `last_name` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `address2` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `state` varchar(255) DEFAULT NULL,
  `zip_code` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `customer_notes` text DEFAULT NULL,
  `vendor_service_fee_amount` decimal(8,2) DEFAULT NULL,
  `vendor_service_fee` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `buyer_fees` text DEFAULT NULL,
  `total_before_fees` decimal(10,2) DEFAULT NULL,
  `paid_vendor` tinyint(4) DEFAULT NULL,
  `object_child_id` bigint(20) DEFAULT NULL,
  `number` smallint(6) DEFAULT NULL,
  `paid` decimal(10,2) DEFAULT NULL,
  `pay_now` decimal(10,2) DEFAULT NULL,
  `wallet_credit_used` double DEFAULT NULL,
  `wallet_total_used` double DEFAULT NULL,
  `wallet_transaction_id` bigint(20) DEFAULT NULL,
  `is_refund_wallet` tinyint(4) DEFAULT NULL,
  `is_paid` tinyint(4) DEFAULT NULL,
  `total_before_discount` decimal(10,2) DEFAULT 0.00,
  `coupon_amount` decimal(10,2) DEFAULT 0.00,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_bookings`
--

LOCK TABLES `bravo_bookings` WRITE;
/*!40000 ALTER TABLE `bravo_bookings` DISABLE KEYS */;
INSERT INTO `bravo_bookings` (`id`, `code`, `vendor_id`, `customer_id`, `payment_id`, `gateway`, `object_id`, `object_model`, `start_date`, `end_date`, `total`, `total_guests`, `currency`, `status`, `deposit`, `deposit_type`, `commission`, `commission_type`, `email`, `first_name`, `last_name`, `phone`, `address`, `address2`, `city`, `state`, `zip_code`, `country`, `customer_notes`, `vendor_service_fee_amount`, `vendor_service_fee`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `buyer_fees`, `total_before_fees`, `paid_vendor`, `object_child_id`, `number`, `paid`, `pay_now`, `wallet_credit_used`, `wallet_total_used`, `wallet_transaction_id`, `is_refund_wallet`, `is_paid`, `total_before_discount`, `coupon_amount`) VALUES (1,'072447e9f19bd4da29e51fb08b4e760c',1,7,2,'razorpay_gateway',1,'hotel','2023-03-24 00:00:00','2023-03-26 00:00:00',1500.00,1,NULL,'unpaid',NULL,NULL,140.00,'{\"amount\":\"10\",\"type\":\"percent\"}','gyanuk67@gmail.com','Gyanendu','Jigyasa','9106014883','Test Address','AFDSFDSGFDS','Test City',NULL,'123456','IN',NULL,0.00,'\"\"',7,7,NULL,'2023-03-23 15:53:03','2023-03-23 15:55:05','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',1400.00,NULL,NULL,NULL,NULL,1500.00,0,0,NULL,NULL,NULL,1400.00,0.00),
(2,'59a24d78b033c5fb0a4471270f561448',5,10,NULL,NULL,10,'car','2023-05-18 00:00:00','2023-05-26 00:00:00',2391.00,1,NULL,'draft',NULL,NULL,209.10,'{\"amount\":\"10\",\"type\":\"percent\"}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,'\"\"',10,NULL,NULL,'2023-05-17 11:51:06','2023-05-17 11:51:06','[{\"name\":\"Equipment fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Facility fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]',2091.00,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2091.00,0.00),
(3,'4448609d85f64b4869922a12bfc72c1f',4,1,NULL,'offline_payment',13,'car','2023-05-27 00:00:00','2023-06-04 00:00:00',3900.00,1,NULL,'processing',NULL,NULL,360.00,'{\"amount\":\"10\",\"type\":\"percent\"}','info@testsoftware.online','Test','Software','1234567890',NULL,NULL,'New York',NULL,NULL,'US',NULL,0.00,'\"\"',1,1,NULL,'2023-05-25 18:53:42','2023-05-25 18:54:47','[{\"name\":\"Equipment fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Facility fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]',3600.00,NULL,NULL,1,NULL,3900.00,0,0,NULL,NULL,NULL,3600.00,0.00),
(4,'1626a0413db40f5587c31b1678ab2a3a',5,1,NULL,NULL,7,'car','2023-05-28 00:00:00','2023-06-03 00:00:00',1700.00,1,NULL,'draft',NULL,NULL,140.00,'{\"amount\":\"10\",\"type\":\"percent\"}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,'\"\"',1,NULL,NULL,'2023-05-25 19:00:30','2023-05-25 19:00:30','[{\"name\":\"Equipment fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Facility fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]',1400.00,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1400.00,0.00),
(5,'63aea8b536693610e5285885880d2ceb',1,11,NULL,'offline_payment',2,'hotel','2023-09-19 00:00:00','2023-09-20 00:00:00',450.00,1,NULL,'processing',NULL,NULL,35.00,'{\"amount\":\"10\",\"type\":\"percent\"}','abhishek@peytonsoft.com','Kumar','Abhi','9667732250','sdddddd','ssssssss','ssss','ssssssss','123332','IN','ddddddddddddd',0.00,'\"\"',11,11,NULL,'2023-09-18 05:33:36','2023-09-18 05:33:57','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',350.00,NULL,NULL,NULL,NULL,450.00,0,0,NULL,NULL,NULL,350.00,0.00),
(6,'9ec4fff71263d66656d961790080a3e9',6,11,NULL,'offline_payment',6,'hotel','2023-09-20 00:00:00','2023-09-21 00:00:00',450.00,1,NULL,'processing',NULL,NULL,35.00,'{\"amount\":\"10\",\"type\":\"percent\"}','abhishek@peytonsoft.com','Kumar','Abhi','9667732250','sdddddd','ssssssss','ssss','ssssssss','123332','IN','fffffffffffff',0.00,'\"\"',11,11,NULL,'2023-09-19 06:17:28','2023-09-19 06:18:06','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',350.00,NULL,NULL,NULL,NULL,450.00,0,0,NULL,NULL,NULL,350.00,0.00),
(7,'94f64989eb701a3cd1dbd601d7f1f213',5,1,NULL,NULL,11,'hotel','2023-09-29 00:00:00','2023-09-30 00:00:00',200.00,1,NULL,'draft',NULL,NULL,10.00,'{\"amount\":\"10\",\"type\":\"percent\"}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,'\"\"',1,NULL,NULL,'2023-09-19 06:26:01','2023-09-19 06:26:01','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',100.00,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,100.00,0.00),
(8,'e1f769be16ebec1404aa9fda3146e01e',6,11,NULL,NULL,6,'hotel','2023-09-19 00:00:00','2023-09-20 00:00:00',440.00,1,NULL,'draft',NULL,NULL,34.00,'{\"amount\":\"10\",\"type\":\"percent\"}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,'\"\"',11,11,NULL,'2023-09-19 06:29:59','2023-09-19 06:30:18','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',340.00,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,350.00,10.00),
(9,'ea014412a7d3a59d60851288115581e1',1,11,NULL,'offline_payment',12,'event','2023-09-19 00:00:00','2023-09-19 00:00:00',1200.00,1,NULL,'completed',NULL,NULL,110.00,'{\"amount\":\"10\",\"type\":\"percent\"}','abhishek@peytonsoft.com','Kumar','Abhi','9667732250','sdddddd','ssssssss','ssss','ssssssss','123332','IN',NULL,0.00,'\"\"',11,1,NULL,'2023-09-19 06:51:49','2023-09-19 07:41:54','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',1100.00,NULL,NULL,NULL,0.00,1200.00,0,0,NULL,NULL,NULL,1100.00,0.00),
(10,'819dd244715c1fac9a9e003c33c2871f',6,13,NULL,'offline_payment',6,'hotel','2023-10-01 00:00:00','2023-10-08 00:00:00',2550.00,3,NULL,'processing',NULL,NULL,245.00,'{\"amount\":\"10\",\"type\":\"percent\"}','nmalviya575@gmail.com','Nitesh','Malviya','+918871887109','Mansarover Complex, FF-8, Block A, 2nd Floor','Habibganj Rd, Near Railway Station','Bhopal','Madhya Pradesh','462016','IN',NULL,0.00,'\"\"',13,13,NULL,'2023-09-30 09:46:33','2023-09-30 09:46:52','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',2450.00,NULL,NULL,NULL,NULL,2550.00,0,0,NULL,NULL,NULL,2450.00,0.00),
(11,'5e5e4e420ddd126023d0af4231d7fa21',4,11,NULL,'offline_payment',3,'tour','2024-07-28 00:00:00','2024-07-28 05:00:00',1200.00,1,NULL,'confirmed',NULL,NULL,110.00,'{\"amount\":\"10\",\"type\":\"percent\"}','abhishek@peytonsoft.com','Kumar','Abhi','9667732250','sdddddd','ssssssss','ssss','ssssssss','123332','IN',NULL,0.00,'\"\"',11,1,NULL,'2024-07-26 20:54:08','2024-07-26 20:58:40','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',1100.00,NULL,NULL,NULL,0.00,1200.00,0,0,NULL,NULL,NULL,1100.00,0.00),
(12,'fa1e066773833f8044fd920416a07774',6,11,NULL,NULL,9,'space','2024-07-27 00:00:00','2024-07-28 00:00:00',1000.00,6,NULL,'draft',NULL,NULL,70.00,'{\"amount\":\"10\",\"type\":\"percent\"}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,'\"\"',11,NULL,NULL,'2024-07-26 21:00:37','2024-07-26 21:00:37','[{\"name\":\"Cleaning fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]',700.00,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,700.00,0.00),
(13,'da09b77a76c9c0220e573651e2aacf4d',6,1,NULL,'offline_payment',9,'space','2025-01-04 00:00:00','2025-01-04 00:00:00',750.00,2,NULL,'processing',NULL,NULL,45.00,'{\"amount\":\"10\",\"type\":\"percent\"}','info@testsoftware.online','Test','Software','1234567890',NULL,NULL,'Noida','Up','201301','IN',NULL,0.00,'\"\"',1,1,NULL,'2024-12-31 19:13:47','2024-12-31 19:14:18','[{\"name\":\"Cleaning fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]',450.00,NULL,NULL,NULL,NULL,750.00,0,0,NULL,NULL,NULL,450.00,0.00);
/*!40000 ALTER TABLE `bravo_bookings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_car_dates`
--

DROP TABLE IF EXISTS `bravo_car_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_car_dates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `target_id` bigint(20) DEFAULT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `number` tinyint(4) DEFAULT NULL,
  `active` tinyint(4) DEFAULT 0,
  `note_to_customer` text DEFAULT NULL,
  `note_to_admin` text DEFAULT NULL,
  `is_instant` tinyint(4) DEFAULT 0,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_car_dates`
--

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

--
-- Table structure for table `bravo_car_term`
--

DROP TABLE IF EXISTS `bravo_car_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_car_term` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` int(11) DEFAULT NULL,
  `target_id` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_car_term`
--

LOCK TABLES `bravo_car_term` WRITE;
/*!40000 ALTER TABLE `bravo_car_term` DISABLE KEYS */;
INSERT INTO `bravo_car_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,61,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(2,63,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(3,64,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(4,65,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(5,66,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(6,67,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(7,61,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(8,62,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(9,63,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(10,64,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(11,65,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(12,64,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(13,65,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(14,67,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(15,68,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(16,61,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(17,62,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(18,64,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(19,61,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(20,64,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(21,65,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(22,67,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(23,61,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(24,62,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(25,63,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(26,64,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(27,67,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(28,68,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(29,61,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(30,63,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(31,64,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(32,67,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(33,68,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(34,61,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(35,62,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(36,63,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(37,64,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(38,65,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(39,66,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(40,67,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(41,68,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(42,61,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(43,62,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(44,63,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(45,64,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(46,65,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(47,66,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(48,67,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(49,68,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(50,61,10,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(51,65,10,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(52,67,10,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(53,61,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(54,63,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(55,64,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(56,65,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(57,67,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(58,68,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(59,61,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(60,62,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(61,64,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(62,65,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(63,66,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(64,67,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(65,68,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(66,61,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(67,62,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(68,64,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(69,65,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(70,66,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(71,67,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(72,68,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(73,69,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(74,70,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(75,71,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(76,72,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(77,73,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(78,74,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(79,69,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(80,70,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(81,71,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(82,72,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(83,73,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(84,74,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(85,69,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(86,70,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(87,71,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(88,72,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(89,73,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(90,74,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(91,69,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(92,70,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(93,71,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(94,72,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(95,73,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(96,74,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(97,69,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(98,70,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(99,71,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(100,72,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(101,73,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(102,74,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(103,69,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(104,70,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(105,71,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(106,72,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(107,73,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(108,74,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(109,69,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(110,70,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(111,71,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(112,72,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(113,73,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(114,74,7,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(115,69,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(116,70,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(117,71,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(118,72,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(119,73,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(120,74,8,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(121,69,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(122,70,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(123,71,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(124,72,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(125,73,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(126,74,9,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(127,69,10,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(128,70,10,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(129,71,10,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(130,72,10,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(131,73,10,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(132,74,10,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(133,69,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(134,70,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(135,71,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(136,72,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(137,73,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(138,74,11,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(139,69,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(140,70,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(141,71,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(142,72,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(143,73,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(144,74,12,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(145,69,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(146,70,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(147,71,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(148,72,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(149,73,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(150,74,13,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29');
/*!40000 ALTER TABLE `bravo_car_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_car_translations`
--

DROP TABLE IF EXISTS `bravo_car_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_car_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_car_translations_locale_index` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_car_translations`
--

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

--
-- Table structure for table `bravo_cars`
--

DROP TABLE IF EXISTS `bravo_cars`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_cars` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
  `content` text DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `banner_image_id` int(11) DEFAULT NULL,
  `location_id` int(11) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `map_lat` varchar(20) DEFAULT NULL,
  `map_lng` varchar(20) DEFAULT NULL,
  `map_zoom` int(11) DEFAULT NULL,
  `is_featured` tinyint(4) DEFAULT NULL,
  `gallery` varchar(255) DEFAULT NULL,
  `video` varchar(255) DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `number` tinyint(4) DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `sale_price` decimal(12,2) DEFAULT NULL,
  `is_instant` tinyint(4) DEFAULT 0,
  `enable_extra_price` tinyint(4) DEFAULT NULL,
  `extra_price` text DEFAULT NULL,
  `discount_by_days` text DEFAULT NULL,
  `passenger` tinyint(4) DEFAULT 0,
  `gear` varchar(191) DEFAULT '0',
  `baggage` tinyint(4) DEFAULT 0,
  `door` tinyint(4) DEFAULT 0,
  `status` varchar(50) DEFAULT NULL,
  `default_state` tinyint(4) DEFAULT 1,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `review_score` decimal(2,1) DEFAULT NULL,
  `enable_service_fee` tinyint(4) DEFAULT NULL,
  `service_fee` text DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `ical_import_url` varchar(191) DEFAULT NULL,
  `min_day_before_booking` int(11) DEFAULT NULL,
  `min_day_stays` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_cars_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_cars`
--

LOCK TABLES `bravo_cars` WRITE;
/*!40000 ALTER TABLE `bravo_cars` DISABLE KEYS */;
INSERT INTO `bravo_cars` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `faqs`, `number`, `price`, `sale_price`, `is_instant`, `enable_extra_price`, `extra_price`, `discount_by_days`, `passenger`, `gear`, `baggage`, `door`, `status`, `default_state`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `review_score`, `enable_service_fee`, `service_fee`, `author_id`, `ical_import_url`, `min_day_before_booking`, `min_day_stays`) VALUES (1,'BMW-X6-facelift','bmw-x6-facelift','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',143,136,1,'Arrondissement de Paris','21.054831','105.796077',12,0,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',2,500.00,276.00,0,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,3,'Auto',3,4,'publish',1,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.5,NULL,NULL,1,NULL,NULL,NULL),
(2,'2019 Honda Clarity','2019-honda-clarityt-1','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',144,136,1,'Arrondissement de Paris','21.039771','105.777203',12,0,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',4,300.00,0.00,1,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,9,'Auto',5,4,'publish',1,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',5.0,NULL,NULL,1,NULL,NULL,NULL),
(3,'2019 Honda Clarity','2019-honda-clarityt','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',144,136,3,'Arrondissement de Paris','21.031217','105.773698',12,1,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',3,300.00,0.00,0,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,10,'Auto',5,4,'publish',1,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',5.0,NULL,NULL,1,NULL,NULL,NULL),
(4,'2019 BMW M6 Gran Coupe','2019-bmw-m6-gran-coupe','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',145,136,1,'Arrondissement de Paris','21.020161','105.789655',12,1,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',4,300.00,0.00,0,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,5,'Auto',10,4,'publish',1,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.3,NULL,NULL,1,NULL,NULL,NULL),
(5,'2019 Audi S3','2019-audi-s3','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',146,136,5,'Arrondissement de Paris','21.014873','105.794117',12,1,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,300.00,0.00,1,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,4,'Auto',7,4,'publish',1,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.2,NULL,NULL,1,NULL,NULL,NULL),
(6,'Vinfast Fadil Plus','vinfast-fadil-plus','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',147,136,1,'Arrondissement de Paris','21.018398','105.812820',12,0,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',5,400.00,0.00,0,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,3,'Auto',5,4,'publish',1,6,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.0,NULL,NULL,6,NULL,NULL,NULL),
(7,'Mercedes Benz','mercedes-benz','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',148,136,1,'Arrondissement de Paris','21.025769','105.829635',12,1,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',4,200.00,0.00,1,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,10,'Auto',7,4,'publish',1,5,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.7,NULL,NULL,5,NULL,NULL,NULL),
(8,'Vinfast Lux SA2.0 Plus','vinfast-lux-sa20-plus','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',149,136,1,'Arrondissement de Paris','21.017437','105.831179',12,1,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',1,600.00,0.00,0,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,4,'Auto',5,4,'publish',1,6,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.3,NULL,NULL,6,NULL,NULL,NULL),
(9,'Honda Civic','honda-civic','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',150,136,6,'Arrondissement de Paris','21.047879','105.809731',12,1,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',2,450.00,0.00,0,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,10,'Auto',4,4,'publish',1,6,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.7,NULL,NULL,6,NULL,NULL,NULL),
(10,'Toyota Prius Plus','toyota-prius-plus','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',151,136,7,'Arrondissement de Paris','21.025449','105.804412',12,1,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',3,199.00,0.00,1,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,4,'Auto',9,4,'publish',1,5,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.4,NULL,NULL,5,NULL,NULL,NULL),
(11,'Vinfast Lux V8 (SUV)','vinfast-lux-v8-suv','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',152,136,8,'Arrondissement de Paris','21.020001','105.836670',12,0,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',5,250.00,0.00,0,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,6,'Auto',9,4,'publish',1,5,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.0,NULL,NULL,5,NULL,NULL,NULL),
(12,'Vinfast Lux A2.0 Plus','vinfast-lux-a20-plus','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',153,136,3,'Arrondissement de Paris','21.051244','105.777988',12,0,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',3,350.00,0.00,1,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,9,'Auto',8,4,'publish',1,5,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.3,NULL,NULL,5,NULL,NULL,NULL),
(13,'Vinfast Fadil Standard','vinfast-fadil-standard','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',154,136,1,'Arrondissement de Paris','21.053326','105.841475',12,1,'155,156,157,158,159,160,161','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris.  Auto Tech does not do any sort of transmission flush.  Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission.  We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]',4,400.00,0.00,0,1,'[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,4,'Auto',4,4,'publish',1,4,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:29',4.7,NULL,NULL,4,NULL,NULL,NULL);
/*!40000 ALTER TABLE `bravo_cars` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_contact`
--

DROP TABLE IF EXISTS `bravo_contact`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_contact` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `message` text DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_contact`
--

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

--
-- Table structure for table `bravo_coupon_services`
--

DROP TABLE IF EXISTS `bravo_coupon_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_coupon_services` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `coupon_id` bigint(20) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_model` varchar(191) DEFAULT NULL,
  `service_id` bigint(20) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_coupon_services`
--

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

--
-- Table structure for table `bravo_coupons`
--

DROP TABLE IF EXISTS `bravo_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_coupons` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `amount` double(8,2) DEFAULT NULL,
  `discount_type` varchar(50) DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `min_total` double(8,2) DEFAULT NULL,
  `max_total` double(8,2) DEFAULT NULL,
  `services` varchar(191) DEFAULT NULL,
  `only_for_user` varchar(191) DEFAULT NULL,
  `status` varchar(30) DEFAULT NULL,
  `quantity_limit` int(11) DEFAULT NULL,
  `limit_per_user` int(11) DEFAULT NULL,
  `image_id` bigint(20) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_coupons_code_unique` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_coupons`
--

LOCK TABLES `bravo_coupons` WRITE;
/*!40000 ALTER TABLE `bravo_coupons` DISABLE KEYS */;
INSERT INTO `bravo_coupons` (`id`, `code`, `name`, `amount`, `discount_type`, `end_date`, `min_total`, `max_total`, `services`, `only_for_user`, `status`, `quantity_limit`, `limit_per_user`, `image_id`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`) VALUES (1,'Asad','asad',10.00,'fixed',NULL,100.00,10000.00,NULL,NULL,'publish',1,1,227,1,NULL,NULL,'2023-09-19 06:29:41','2023-09-19 06:29:41');
/*!40000 ALTER TABLE `bravo_coupons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_enquiries`
--

DROP TABLE IF EXISTS `bravo_enquiries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_enquiries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `object_id` int(11) DEFAULT NULL,
  `object_model` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `note` text DEFAULT NULL,
  `vendor_id` bigint(20) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `publish_date` datetime DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_enquiries`
--

LOCK TABLES `bravo_enquiries` WRITE;
/*!40000 ALTER TABLE `bravo_enquiries` DISABLE KEYS */;
INSERT INTO `bravo_enquiries` (`id`, `object_id`, `object_model`, `name`, `email`, `phone`, `note`, `vendor_id`, `status`, `publish_date`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,12,'event','Kumar Abhi','abhishek@peytonsoft.com','9667732250','bgftrhfg',1,'pending',NULL,11,NULL,'2023-09-19 06:35:14','2023-09-19 06:35:14');
/*!40000 ALTER TABLE `bravo_enquiries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_enquiry_replies`
--

DROP TABLE IF EXISTS `bravo_enquiry_replies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_enquiry_replies` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_enquiry_replies_parent_id_index` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_enquiry_replies`
--

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

--
-- Table structure for table `bravo_event_dates`
--

DROP TABLE IF EXISTS `bravo_event_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_event_dates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `target_id` bigint(20) DEFAULT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `ticket_types` text DEFAULT NULL,
  `active` tinyint(4) DEFAULT 0,
  `note_to_customer` text DEFAULT NULL,
  `note_to_admin` text DEFAULT NULL,
  `is_instant` tinyint(4) DEFAULT 0,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `price` decimal(8,2) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_event_dates`
--

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

--
-- Table structure for table `bravo_event_term`
--

DROP TABLE IF EXISTS `bravo_event_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_event_term` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` int(11) DEFAULT NULL,
  `target_id` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_event_term`
--

LOCK TABLES `bravo_event_term` WRITE;
/*!40000 ALTER TABLE `bravo_event_term` DISABLE KEYS */;
INSERT INTO `bravo_event_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,75,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(2,76,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(3,78,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(4,79,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(5,80,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(6,81,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(7,82,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(8,75,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(9,76,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(10,77,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(11,81,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(12,82,2,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(13,75,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(14,76,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(15,77,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(16,79,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(17,80,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(18,81,3,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(19,76,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(20,77,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(21,78,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(22,79,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(23,80,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(24,82,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(25,75,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(26,77,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(27,79,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(28,80,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(29,81,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(30,82,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(31,75,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(32,78,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(33,75,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(34,76,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(35,77,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(36,80,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(37,81,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(38,82,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(39,77,8,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(40,78,8,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(41,80,8,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(42,81,8,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(43,82,8,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(44,76,9,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(45,77,9,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(46,78,9,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(47,79,9,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(48,80,9,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(49,81,9,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(50,82,9,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(51,75,10,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(52,76,10,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(53,77,10,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(54,79,10,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(55,80,10,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(56,81,10,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(57,82,10,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(58,75,11,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(59,76,11,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(60,77,11,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(61,78,11,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(62,79,11,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(63,80,11,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(64,81,11,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(65,82,11,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(66,75,12,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(67,78,12,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(68,81,12,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(69,82,12,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30');
/*!40000 ALTER TABLE `bravo_event_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_event_translations`
--

DROP TABLE IF EXISTS `bravo_event_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_event_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `surrounding` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_event_translations_locale_index` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_event_translations`
--

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

--
-- Table structure for table `bravo_events`
--

DROP TABLE IF EXISTS `bravo_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
  `content` text DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `banner_image_id` int(11) DEFAULT NULL,
  `location_id` int(11) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `map_lat` varchar(20) DEFAULT NULL,
  `map_lng` varchar(20) DEFAULT NULL,
  `map_zoom` int(11) DEFAULT NULL,
  `is_featured` tinyint(4) DEFAULT NULL,
  `gallery` varchar(255) DEFAULT NULL,
  `video` varchar(255) DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `ticket_types` text DEFAULT NULL,
  `duration` int(11) DEFAULT NULL,
  `start_time` varchar(191) DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `sale_price` decimal(12,2) DEFAULT NULL,
  `is_instant` tinyint(4) DEFAULT 0,
  `enable_extra_price` tinyint(4) DEFAULT NULL,
  `extra_price` text DEFAULT NULL,
  `review_score` decimal(2,1) DEFAULT NULL,
  `ical_import_url` varchar(191) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `default_state` tinyint(4) DEFAULT 1,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `enable_service_fee` tinyint(4) DEFAULT NULL,
  `service_fee` text DEFAULT NULL,
  `surrounding` text DEFAULT NULL,
  `end_time` varchar(255) DEFAULT NULL,
  `duration_unit` varchar(255) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_events_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_events`
--

LOCK TABLES `bravo_events` WRITE;
/*!40000 ALTER TABLE `bravo_events` DISABLE KEYS */;
INSERT INTO `bravo_events` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `faqs`, `ticket_types`, `duration`, `start_time`, `price`, `sale_price`, `is_instant`, `enable_extra_price`, `extra_price`, `review_score`, `ical_import_url`, `status`, `default_state`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `enable_service_fee`, `service_fee`, `surrounding`, `end_time`, `duration_unit`, `author_id`) VALUES (1,'Andante & Allegro Event Design','andante-allegro-event-design','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',163,181,1,'Arrondissement de Paris','48.852754','2.339155',12,0,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',1,'20:00',2000.00,0.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.7,NULL,'publish',1,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,1),
(2,'Painted Desert Event Designs','painted-desert-event-designs','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',164,182,1,'Porte de Vanves','48.853917','2.307199',12,1,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',5,'19:00',900.00,742.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.7,NULL,'publish',1,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,1),
(3,'Bamboo Grove Event Planning','bamboo-grove-event-planning','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',165,183,1,'Petit-Montrouge','48.884900','2.346377',12,1,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',7,'19:00',1500.00,794.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.7,NULL,'publish',1,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,4),
(4,'Aspen Glade Weddings & Events','aspen-glade-weddings-events','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',166,181,2,'New York','40.707891','-74.008825',12,1,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',9,'17:00',850.00,0.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.3,NULL,'publish',1,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,1),
(5,'Southwest States (Ex Los Angeles) ','southwest-states','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',167,182,2,'Regal Cinemas Battery Park 11','40.714578','-73.983888',12,0,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',7,'18:00',1900.00,1094.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.3,NULL,'publish',1,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,5),
(6,'Spanish Moss Event Design','spanish-moss-event-design','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',168,183,2,'Prince St Station','40.720161','-74.009628',12,1,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',1,'19:00',600.00,0.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.7,NULL,'publish',1,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,5),
(7,'Eastern Discovery','eastern-discovery','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',169,181,2,'Pier 36 New York','40.708581','-73.998817',12,0,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',4,'15:00',2100.00,1682.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.5,NULL,'publish',1,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,5),
(8,'Pink Crescent Moon Events','pink-crescent-moon-events','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',170,182,3,'Trimmer Springs Rd, Sanger','36.822484','-119.365266',12,0,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',2,'21:00',700.00,0.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.3,NULL,'publish',1,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,4),
(9,'Northern Lights Event Planners','northern-lights-event-planners','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',171,183,4,'United States','37.040023','-95.643144',12,1,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',7,'20:00',800.00,600.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.3,NULL,'publish',1,4,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,4),
(10,'Origami Crane Wedding Planners','origami-crane-wedding-planners','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',172,181,5,'Washington, DC, USA','34.049345','-118.248479',12,0,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',6,'18:00',400.00,0.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.3,NULL,'publish',1,5,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,5),
(11,'New York – Discover America','new-york-discover-america','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',173,182,6,'New Jersey','40.035329','-74.417227',12,1,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',5,'14:00',300.00,0.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.3,NULL,'publish',1,6,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,6),
(12,'Event of Washington, D.C. Highlights','event-of-washington-dc-highlights','<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',174,183,7,'Francisco Parnassus Campus','37.782668','-122.425058',12,1,'175,176,177,178,179,180','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience.  Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening.  One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website.  We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very.  There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks.  The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES!  Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]','[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]',7,'17:00',2100.00,1181.00,0,1,'[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]',4.0,NULL,'publish',1,1,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:30',NULL,NULL,NULL,NULL,NULL,1);
/*!40000 ALTER TABLE `bravo_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_flight`
--

DROP TABLE IF EXISTS `bravo_flight`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_flight` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) DEFAULT NULL,
  `code` varchar(191) DEFAULT NULL,
  `review_score` decimal(2,1) DEFAULT NULL,
  `departure_time` datetime DEFAULT NULL,
  `arrival_time` datetime DEFAULT NULL,
  `duration` double(8,2) DEFAULT NULL,
  `min_price` decimal(12,2) DEFAULT NULL,
  `airport_to` int(11) DEFAULT NULL,
  `airport_from` int(11) DEFAULT NULL,
  `airline_id` int(11) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_flight`
--

LOCK TABLES `bravo_flight` WRITE;
/*!40000 ALTER TABLE `bravo_flight` DISABLE KEYS */;
INSERT INTO `bravo_flight` (`id`, `title`, `code`, `review_score`, `departure_time`, `arrival_time`, `duration`, `min_price`, `airport_to`, `airport_from`, `airline_id`, `status`, `create_user`, `update_user`, `created_at`, `updated_at`, `deleted_at`, `author_id`) VALUES (1,'Prof. Rex Volkman I','VJ469',0.0,'2023-03-29 16:48:40','2023-03-29 20:48:40',4.00,44.00,17,4,10,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(2,'Ms. Mya Bosco','VJ271',0.0,'2023-03-24 21:47:30','2023-03-25 06:47:30',9.00,27.00,16,1,11,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(3,'Mr. Merle Ortiz','VJ792',0.0,'2023-03-27 00:51:59','2023-03-27 09:51:59',9.00,44.00,19,16,11,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(4,'Dr. Macy Stokes','VJ254',0.0,'2023-03-24 16:20:16','2023-03-25 01:20:16',9.00,80.00,3,5,17,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(5,'Gunner Mayer','VJ436',0.0,'2023-03-25 01:15:02','2023-03-25 06:15:02',5.00,13.00,16,17,9,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(6,'Furman Little','VJ329',0.0,'2023-03-25 03:47:16','2023-03-25 07:47:16',4.00,10.00,11,6,13,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(7,'Tiffany Prosacco','VJ491',0.0,'2023-03-24 22:56:36','2023-03-25 02:56:36',4.00,68.00,18,12,10,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(8,'Unique Moore Jr.','VJ827',0.0,'2023-03-27 08:23:00','2023-03-27 15:23:00',7.00,44.00,5,15,15,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(9,'Dr. Rowland McCullough MD','VJ386',0.0,'2023-03-25 09:45:51','2023-03-25 11:45:51',2.00,14.00,11,10,1,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(10,'Dr. Jessie Johnston IV','VJ749',0.0,'2023-03-26 18:03:57','2023-03-27 00:03:57',6.00,28.00,9,17,20,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(11,'Dr. Jessie Feil','VJ437',0.0,'2023-03-24 10:40:55','2023-03-24 18:40:55',8.00,11.00,15,3,17,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(12,'Waldo Feil','VJ184',0.0,'2023-03-29 21:31:56','2023-03-30 03:31:56',6.00,43.00,19,10,18,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(13,'Dr. Joey Thompson','VJ775',0.0,'2023-03-28 12:39:18','2023-03-28 20:39:18',8.00,27.00,6,12,1,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(14,'Heather Swaniawski','VJ709',0.0,'2023-03-29 12:58:53','2023-03-29 18:58:53',6.00,76.00,4,16,7,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(15,'Ms. Ardith Kshlerin','VJ967',0.0,'2023-03-26 18:57:36','2023-03-27 02:57:36',8.00,25.00,18,14,1,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(16,'Cielo Windler','VJ666',0.0,'2023-03-28 09:43:53','2023-03-28 12:43:53',3.00,15.00,6,17,17,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(17,'Zoila O\'Hara','VJ869',0.0,'2023-03-30 02:49:55','2023-03-30 05:49:55',3.00,58.00,18,1,6,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(18,'Delores Denesik','VJ534',0.0,'2023-03-30 04:19:53','2023-03-30 05:19:53',1.00,33.00,19,4,2,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(19,'Ms. Kasey Koepp','VJ776',0.0,'2023-03-25 12:32:53','2023-03-25 22:32:53',10.00,24.00,5,14,8,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(20,'Albina Willms Sr.','VJ721',0.0,'2023-03-24 14:02:12','2023-03-24 16:02:12',2.00,18.00,2,10,6,'publish',NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:36',NULL,NULL),
(21,'Air Express','AE7361',NULL,'2024-03-25 11:15:00','2024-03-25 18:25:00',7.00,NULL,19,1,17,'publish',1,1,'2024-03-22 06:14:09','2024-03-23 14:51:09',NULL,NULL);
/*!40000 ALTER TABLE `bravo_flight` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_flight_seat`
--

DROP TABLE IF EXISTS `bravo_flight_seat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_flight_seat` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `price` decimal(12,2) DEFAULT NULL,
  `max_passengers` int(11) DEFAULT NULL,
  `flight_id` int(11) DEFAULT NULL,
  `seat_type` varchar(191) DEFAULT NULL,
  `person` varchar(191) DEFAULT NULL,
  `baggage_check_in` int(11) DEFAULT NULL,
  `baggage_cabin` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_flight_seat`
--

LOCK TABLES `bravo_flight_seat` WRITE;
/*!40000 ALTER TABLE `bravo_flight_seat` DISABLE KEYS */;
INSERT INTO `bravo_flight_seat` (`id`, `price`, `max_passengers`, `flight_id`, `seat_type`, `person`, `baggage_check_in`, `baggage_cabin`, `create_user`, `update_user`, `created_at`, `updated_at`, `deleted_at`, `author_id`) VALUES (1,44.00,13,1,'vip','adult',14,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(2,95.00,11,1,'eco','adult',14,3,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(3,50.00,14,1,'premium','child',13,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(4,74.00,5,2,'business','child',13,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(5,27.00,16,2,'fist_class','adult',14,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(6,84.00,11,2,'vip','adult',14,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(7,77.00,8,3,'eco','adult',14,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(8,82.00,7,3,'premium','child',12,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(9,44.00,4,3,'business','adult',14,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(10,98.00,6,4,'fist_class','child',12,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(11,80.00,5,4,'vip','child',12,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(12,92.00,17,4,'eco','adult',10,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(13,13.00,1,5,'premium','child',10,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(14,73.00,18,5,'business','adult',11,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(15,95.00,14,5,'fist_class','child',13,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(16,10.00,19,6,'vip','child',11,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(17,19.00,20,6,'eco','adult',11,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(18,59.00,18,6,'premium','child',13,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(19,90.00,1,7,'business','adult',10,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(20,68.00,9,7,'fist_class','adult',14,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(21,69.00,14,7,'vip','child',12,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(22,44.00,5,8,'eco','adult',14,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(23,89.00,8,8,'premium','adult',15,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(24,50.00,20,8,'business','adult',13,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(25,37.00,15,9,'fist_class','child',13,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(26,14.00,15,9,'vip','child',12,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(27,20.00,15,9,'eco','child',10,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(28,28.00,1,10,'premium','adult',12,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(29,69.00,11,10,'business','child',12,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(30,38.00,7,10,'fist_class','adult',10,3,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(31,30.00,15,11,'vip','child',10,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(32,11.00,18,11,'eco','child',15,3,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(33,82.00,17,11,'premium','adult',14,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(34,43.00,6,12,'business','adult',14,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(35,84.00,17,12,'fist_class','adult',10,3,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(36,43.00,14,12,'vip','adult',11,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(37,93.00,11,13,'eco','adult',12,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(38,70.00,9,13,'premium','child',13,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(39,27.00,7,13,'business','child',10,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(40,82.00,20,14,'fist_class','child',14,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(41,79.00,3,14,'vip','adult',13,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(42,76.00,2,14,'eco','adult',10,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(43,25.00,2,15,'premium','child',13,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(44,83.00,16,15,'business','child',13,3,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(45,32.00,3,15,'fist_class','adult',11,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(46,39.00,13,16,'vip','adult',10,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(47,36.00,11,16,'eco','child',14,3,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(48,15.00,6,16,'premium','adult',15,3,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(49,91.00,4,17,'business','adult',13,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(50,64.00,15,17,'fist_class','adult',12,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(51,58.00,5,17,'vip','child',14,5,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(52,80.00,1,18,'eco','child',15,3,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(53,33.00,10,18,'premium','child',13,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(54,33.00,14,18,'business','child',11,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(55,67.00,2,19,'fist_class','child',13,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(56,95.00,5,19,'vip','adult',15,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(57,24.00,14,19,'eco','adult',11,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(58,18.00,15,20,'premium','child',10,7,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(59,63.00,1,20,'business','child',11,4,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL),
(60,70.00,7,20,'fist_class','adult',12,6,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL);
/*!40000 ALTER TABLE `bravo_flight_seat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_flight_term`
--

DROP TABLE IF EXISTS `bravo_flight_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_flight_term` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` int(11) DEFAULT NULL,
  `target_id` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=114 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_flight_term`
--

LOCK TABLES `bravo_flight_term` WRITE;
/*!40000 ALTER TABLE `bravo_flight_term` DISABLE KEYS */;
INSERT INTO `bravo_flight_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`) VALUES (1,83,1,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(2,84,1,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(3,85,1,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(4,86,1,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(5,87,1,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(6,90,1,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(7,85,2,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(8,89,2,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(9,90,2,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(10,83,3,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(11,85,3,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(12,87,3,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(13,88,3,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(14,89,3,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(15,90,3,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(16,83,4,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(17,84,4,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(18,86,4,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(19,87,4,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(20,88,4,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(21,90,4,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(22,83,5,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(23,85,5,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(24,86,5,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(25,87,5,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(26,89,5,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(27,83,6,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(28,84,6,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(29,87,6,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(30,88,6,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(31,90,6,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(32,83,7,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(33,84,7,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(34,85,7,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(35,84,8,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(36,85,8,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(37,87,8,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(38,88,8,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(39,84,9,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(40,85,9,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(41,86,9,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(42,88,9,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(43,89,9,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(44,83,10,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(45,84,10,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(46,86,10,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(47,88,10,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(48,89,10,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(49,90,10,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(50,83,11,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(51,85,11,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(52,86,11,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(53,87,11,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(54,89,11,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(55,83,12,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(56,84,12,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(57,85,12,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(58,86,12,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(59,87,12,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(60,88,12,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(61,89,12,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(62,83,13,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(63,84,13,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(64,86,13,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(65,87,13,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(66,88,13,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(67,90,13,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(68,83,14,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(69,84,14,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(70,85,14,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(71,86,14,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(72,88,14,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(73,89,14,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(74,90,14,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(75,83,15,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(76,84,15,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(77,85,15,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(78,87,15,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(79,88,15,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(80,89,15,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(81,83,16,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(82,84,16,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(83,85,16,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(84,87,16,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(85,88,16,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(86,90,16,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(87,83,17,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(88,84,17,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(89,85,17,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(90,86,17,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(91,88,17,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(92,89,17,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(93,83,18,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(94,84,18,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(95,85,18,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(96,86,18,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(97,87,18,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(98,88,18,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(99,84,19,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(100,85,19,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(101,86,19,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(102,89,19,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(103,83,20,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(104,85,20,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(105,87,20,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(106,88,20,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(107,90,20,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30'),
(108,83,21,1,NULL,NULL,'2024-03-22 06:14:09','2024-03-22 06:14:09'),
(109,85,21,1,NULL,NULL,'2024-03-22 06:14:09','2024-03-22 06:14:09'),
(110,86,21,1,NULL,NULL,'2024-03-22 06:14:09','2024-03-22 06:14:09'),
(111,87,21,1,NULL,NULL,'2024-03-22 06:14:09','2024-03-22 06:14:09'),
(112,105,21,1,NULL,NULL,'2024-03-22 06:14:09','2024-03-22 06:14:09');
/*!40000 ALTER TABLE `bravo_flight_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_hotel_room_bookings`
--

DROP TABLE IF EXISTS `bravo_hotel_room_bookings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_hotel_room_bookings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `room_id` bigint(20) DEFAULT NULL,
  `parent_id` bigint(20) DEFAULT NULL,
  `booking_id` bigint(20) DEFAULT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `number` smallint(6) DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_hotel_room_bookings`
--

LOCK TABLES `bravo_hotel_room_bookings` WRITE;
/*!40000 ALTER TABLE `bravo_hotel_room_bookings` DISABLE KEYS */;
INSERT INTO `bravo_hotel_room_bookings` (`id`, `room_id`, `parent_id`, `booking_id`, `start_date`, `end_date`, `number`, `price`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,1,1,1,'2023-03-23 23:00:00','2023-03-25 23:00:00',2,700.00,7,NULL,'2023-03-23 15:53:03','2023-03-23 15:53:03'),
(2,5,2,5,'2023-09-18 18:30:00','2023-09-19 18:30:00',1,350.00,11,NULL,'2023-09-18 05:33:36','2023-09-18 05:33:36'),
(3,21,6,6,'2023-09-19 18:30:00','2023-09-20 18:30:00',1,350.00,11,NULL,'2023-09-19 06:17:28','2023-09-19 06:17:28'),
(4,45,11,7,'2023-09-28 18:30:00','2023-09-29 18:30:00',1,100.00,1,NULL,'2023-09-19 06:26:01','2023-09-19 06:26:01'),
(5,21,6,8,'2023-09-18 18:30:00','2023-09-19 18:30:00',1,350.00,11,NULL,'2023-09-19 06:29:59','2023-09-19 06:29:59'),
(6,21,6,10,'2023-09-30 18:30:00','2023-10-07 18:30:00',1,2450.00,13,NULL,'2023-09-30 09:46:33','2023-09-30 09:46:33');
/*!40000 ALTER TABLE `bravo_hotel_room_bookings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_hotel_room_dates`
--

DROP TABLE IF EXISTS `bravo_hotel_room_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_hotel_room_dates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `target_id` bigint(20) DEFAULT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `max_guests` tinyint(4) DEFAULT NULL,
  `active` tinyint(4) DEFAULT 0,
  `note_to_customer` text DEFAULT NULL,
  `note_to_admin` text DEFAULT NULL,
  `is_instant` tinyint(4) DEFAULT 0,
  `number` smallint(6) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_hotel_room_dates`
--

LOCK TABLES `bravo_hotel_room_dates` WRITE;
/*!40000 ALTER TABLE `bravo_hotel_room_dates` DISABLE KEYS */;
INSERT INTO `bravo_hotel_room_dates` (`id`, `target_id`, `start_date`, `end_date`, `price`, `max_guests`, `active`, `note_to_customer`, `note_to_admin`, `is_instant`, `number`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,44,'2023-08-27 18:30:00','2023-08-27 18:30:00',350.00,NULL,1,NULL,NULL,0,6,1,1,'2023-09-19 06:23:52','2023-09-19 06:24:07'),
(2,44,'2023-08-28 18:30:00','2023-08-28 18:30:00',350.00,NULL,0,NULL,NULL,0,6,1,NULL,'2023-09-19 06:24:22','2023-09-19 06:24:22'),
(3,44,'2023-08-29 18:30:00','2023-08-29 18:30:00',350.00,NULL,0,NULL,NULL,0,6,1,NULL,'2023-09-19 06:25:08','2023-09-19 06:25:08'),
(4,45,'2023-09-24 18:30:00','2023-09-24 18:30:00',100.00,NULL,1,NULL,NULL,0,1,1,1,'2023-10-16 06:58:04','2023-10-16 06:58:45'),
(5,44,'2023-09-24 18:30:00','2023-09-24 18:30:00',350.00,NULL,1,NULL,NULL,0,2,1,1,'2023-10-16 06:59:05','2023-10-16 06:59:24'),
(6,35,'2023-10-25 18:30:00','2023-10-25 18:30:00',350.00,NULL,1,NULL,NULL,0,7,1,NULL,'2023-10-24 17:46:51','2023-10-24 17:46:51'),
(7,35,'2023-10-26 18:30:00','2023-10-26 18:30:00',350.00,NULL,1,NULL,NULL,0,7,1,NULL,'2023-10-24 17:46:51','2023-10-24 17:46:51');
/*!40000 ALTER TABLE `bravo_hotel_room_dates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_hotel_room_term`
--

DROP TABLE IF EXISTS `bravo_hotel_room_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_hotel_room_term` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` int(11) DEFAULT NULL,
  `target_id` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=185 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_hotel_room_term`
--

LOCK TABLES `bravo_hotel_room_term` WRITE;
/*!40000 ALTER TABLE `bravo_hotel_room_term` DISABLE KEYS */;
INSERT INTO `bravo_hotel_room_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,56,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(2,57,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(3,58,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(4,59,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(5,60,1,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(6,56,2,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(7,56,3,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(8,57,3,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(9,58,3,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(10,59,3,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(11,56,4,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(12,57,4,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(13,58,4,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(14,59,4,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(15,60,4,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(16,56,5,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(17,57,5,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(18,58,5,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(19,59,5,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(20,60,5,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(21,56,6,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(22,57,6,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(23,59,6,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(24,60,6,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(25,56,7,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(26,57,7,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(27,59,7,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(28,60,7,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(29,56,8,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(30,57,8,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(31,58,8,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(32,59,8,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(33,60,8,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(34,57,9,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(35,58,9,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(36,59,9,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(37,60,9,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(38,56,10,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(39,57,10,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(40,58,10,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(41,60,10,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(42,57,11,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(43,58,11,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(44,59,11,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(45,60,11,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(46,56,12,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(47,57,12,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(48,58,12,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(49,59,12,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(50,60,12,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(51,56,13,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(52,57,13,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(53,58,13,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(54,59,13,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(55,56,14,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(56,57,14,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(57,58,14,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(58,59,14,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(59,60,14,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(60,56,15,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(61,57,15,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(62,58,15,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(63,59,15,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(64,60,15,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(65,56,16,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(66,57,16,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(67,58,16,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(68,59,16,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(69,60,16,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(70,56,17,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(71,57,17,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(72,58,17,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(73,59,17,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(74,60,17,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(75,57,18,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(76,59,18,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(77,56,19,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(78,58,19,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(79,59,19,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(80,60,19,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(81,56,20,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(82,57,20,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(83,58,20,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(84,59,20,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(85,60,20,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(86,56,21,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(87,57,21,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(88,58,21,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(89,59,21,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(90,60,21,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(91,56,22,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(92,57,22,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(93,58,22,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(94,59,22,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(95,60,22,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(96,56,23,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(97,57,23,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(98,58,23,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(99,60,23,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(100,56,24,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(101,57,24,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(102,58,24,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(103,60,24,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(104,56,25,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(105,57,25,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(106,58,25,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(107,59,25,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(108,56,26,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(109,57,26,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(110,58,26,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(111,60,26,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(112,56,27,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(113,57,27,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(114,58,27,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(115,59,27,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(116,60,27,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(117,56,28,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(118,57,28,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(119,58,28,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(120,59,28,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(121,56,29,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(122,57,29,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(123,58,29,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(124,60,29,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(125,56,30,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(126,57,30,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(127,58,30,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(128,56,31,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(129,57,31,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(130,58,31,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(131,60,31,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(132,56,32,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(133,57,32,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(134,58,32,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(135,57,33,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(136,58,33,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(137,59,33,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(138,60,33,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(139,56,34,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(140,58,34,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(141,59,34,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(142,56,35,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(143,57,35,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(144,58,35,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(145,56,36,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(146,57,36,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(147,58,36,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(148,59,36,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(149,56,37,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(150,57,37,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(151,58,37,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(152,60,37,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(153,56,38,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(154,58,38,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(155,59,38,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(156,56,39,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(157,57,39,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(158,58,39,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(159,59,39,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(160,60,39,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(161,56,40,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(162,57,40,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(163,58,40,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(164,59,40,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(165,56,41,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(166,57,41,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(167,58,41,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(168,59,41,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(169,56,42,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(170,58,42,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(171,59,42,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(172,60,42,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(173,56,43,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(174,57,43,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(175,58,43,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(176,59,43,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(177,56,44,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(178,58,44,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(179,59,44,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(180,60,44,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(181,56,45,1,NULL,'2023-09-19 06:23:10','2023-09-19 06:23:10'),
(182,57,45,1,NULL,'2023-09-19 06:23:10','2023-09-19 06:23:10'),
(183,58,45,1,NULL,'2023-09-19 06:23:10','2023-09-19 06:23:10'),
(184,59,45,1,NULL,'2023-09-19 06:23:10','2023-09-19 06:23:10');
/*!40000 ALTER TABLE `bravo_hotel_room_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_hotel_room_translations`
--

DROP TABLE IF EXISTS `bravo_hotel_room_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_hotel_room_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_hotel_room_translations_locale_index` (`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_hotel_room_translations`
--

LOCK TABLES `bravo_hotel_room_translations` WRITE;
/*!40000 ALTER TABLE `bravo_hotel_room_translations` DISABLE KEYS */;
INSERT INTO `bravo_hotel_room_translations` (`id`, `origin_id`, `locale`, `title`, `content`, `status`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`) VALUES (1,45,'en','Delux room',NULL,'publish',1,NULL,NULL,'2023-09-19 06:23:10','2023-09-19 06:23:10');
/*!40000 ALTER TABLE `bravo_hotel_room_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_hotel_rooms`
--

DROP TABLE IF EXISTS `bravo_hotel_rooms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_hotel_rooms` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `gallery` varchar(255) DEFAULT NULL,
  `video` varchar(255) DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `parent_id` bigint(20) DEFAULT NULL,
  `number` smallint(6) DEFAULT NULL,
  `beds` tinyint(4) DEFAULT NULL,
  `size` int(11) DEFAULT NULL,
  `adults` tinyint(4) DEFAULT NULL,
  `children` tinyint(4) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `ical_import_url` varchar(191) DEFAULT NULL,
  `min_day_stays` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_hotel_rooms`
--

LOCK TABLES `bravo_hotel_rooms` WRITE;
/*!40000 ALTER TABLE `bravo_hotel_rooms` DISABLE KEYS */;
INSERT INTO `bravo_hotel_rooms` (`id`, `title`, `content`, `image_id`, `gallery`, `video`, `price`, `parent_id`, `number`, `beds`, `size`, `adults`, `children`, `status`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `ical_import_url`, `min_day_stays`) VALUES (1,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,1,7,4,200,8,4,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(2,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,1,10,5,200,9,5,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(3,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,1,10,5,200,7,4,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(4,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,1,5,2,200,8,1,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(5,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,2,7,5,200,10,5,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(6,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,2,5,4,200,5,4,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(7,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,2,10,4,200,8,3,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(8,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,2,6,4,200,6,1,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(9,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,3,10,2,200,8,1,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(10,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,3,5,5,200,10,4,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(11,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,3,9,5,200,5,2,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(12,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,3,8,3,200,10,3,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(13,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,4,8,5,200,9,4,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(14,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,4,9,3,200,8,3,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(15,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,4,5,3,200,9,2,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(16,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,4,5,2,200,9,4,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(17,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,5,7,4,200,6,5,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(18,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,5,9,2,200,8,4,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(19,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,5,10,3,200,10,5,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(20,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,5,10,2,200,5,1,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(21,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,6,9,2,200,5,2,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(22,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,6,5,5,200,10,2,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(23,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,6,5,2,200,8,3,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(24,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,6,7,4,200,7,1,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(25,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,7,7,2,200,5,5,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(26,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,7,6,2,200,9,2,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(27,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,7,6,3,200,6,1,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(28,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,7,5,4,200,6,4,'publish',6,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(29,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,8,8,4,200,6,3,'publish',4,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(30,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,8,5,3,200,9,4,'publish',4,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(31,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,8,5,3,200,9,2,'publish',4,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(32,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,8,6,4,200,8,5,'publish',4,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(33,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,9,7,3,200,10,5,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(34,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,9,6,5,200,7,5,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(35,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,9,7,2,200,5,5,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(36,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,9,5,3,200,7,1,'publish',1,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(37,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,10,5,4,200,9,2,'publish',5,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(38,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,10,6,5,200,6,1,'publish',5,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(39,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,10,6,3,200,6,1,'publish',5,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(40,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,10,9,5,200,10,2,'publish',5,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(41,'Room Kerama Islands','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',67,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,11,7,3,200,10,5,'publish',5,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(42,'Room Sheraton Hotel','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',69,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,11,8,4,200,5,2,'publish',5,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(43,'Double Room With Town View','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',64,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,11,10,4,200,7,4,'publish',5,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(44,'Standard Double Room','Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.',63,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo',350.00,11,6,3,200,10,2,'publish',5,NULL,NULL,'2023-03-23 08:49:28',NULL,NULL,NULL),
(45,'Delux room',NULL,200,NULL,NULL,100.00,11,1,2,420,2,2,'publish',1,NULL,NULL,'2023-09-19 06:23:10','2023-09-19 06:23:10',NULL,1);
/*!40000 ALTER TABLE `bravo_hotel_rooms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_hotel_term`
--

DROP TABLE IF EXISTS `bravo_hotel_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_hotel_term` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` int(11) DEFAULT NULL,
  `target_id` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=232 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_hotel_term`
--

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

--
-- Table structure for table `bravo_hotel_translations`
--

DROP TABLE IF EXISTS `bravo_hotel_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_hotel_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `policy` text DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `surrounding` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_hotel_translations_locale_index` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_hotel_translations`
--

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

--
-- Table structure for table `bravo_hotels`
--

DROP TABLE IF EXISTS `bravo_hotels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_hotels` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
  `content` text DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `banner_image_id` int(11) DEFAULT NULL,
  `location_id` int(11) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `map_lat` varchar(20) DEFAULT NULL,
  `map_lng` varchar(20) DEFAULT NULL,
  `map_zoom` int(11) DEFAULT NULL,
  `is_featured` tinyint(4) DEFAULT NULL,
  `gallery` varchar(255) DEFAULT NULL,
  `video` varchar(255) DEFAULT NULL,
  `policy` text DEFAULT NULL,
  `star_rate` smallint(6) DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `check_in_time` varchar(255) DEFAULT NULL,
  `check_out_time` varchar(255) DEFAULT NULL,
  `allow_full_day` smallint(6) DEFAULT NULL,
  `sale_price` decimal(12,2) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `review_score` decimal(2,1) DEFAULT NULL,
  `ical_import_url` varchar(191) DEFAULT NULL,
  `enable_extra_price` tinyint(4) DEFAULT NULL,
  `extra_price` text DEFAULT NULL,
  `enable_service_fee` tinyint(4) DEFAULT NULL,
  `service_fee` text DEFAULT NULL,
  `surrounding` text DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `min_day_before_booking` int(11) DEFAULT NULL,
  `min_day_stays` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_hotels_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_hotels`
--

LOCK TABLES `bravo_hotels` WRITE;
/*!40000 ALTER TABLE `bravo_hotels` DISABLE KEYS */;
INSERT INTO `bravo_hotels` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `policy`, `star_rate`, `price`, `check_in_time`, `check_out_time`, `allow_full_day`, `sale_price`, `status`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `review_score`, `ical_import_url`, `enable_extra_price`, `extra_price`, `enable_service_fee`, `service_fee`, `surrounding`, `author_id`, `min_day_before_booking`, `min_day_stays`) VALUES (1,'Hotel Stanford','hotel-stanford','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',67,95,1,'Arrondissement de Paris','19.148665','72.839670',12,0,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,300.00,'12:00AM','11:00AM',NULL,NULL,'publish',1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.7,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,1,NULL,NULL),
(2,'Hotel WBF Hommachi','hotel-wbf-homachi','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',68,96,1,'Porte de Vanves','19.110390','72.832764',12,0,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,350.00,'12:00AM','11:00AM',NULL,NULL,'publish',1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.4,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,1,NULL,NULL),
(3,'Castello Casole Hotel','castello-casole-hotel','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',69,95,1,'Petit-Montrouge','19.077946','72.838255',12,0,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,350.00,'12:00AM','11:00AM',NULL,NULL,'publish',1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.0,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,1,NULL,NULL),
(4,'Redac Gateway Hotel','redac-gateway-hotel','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',70,95,1,'Petit-Montrouge','19.031217','72.851982',12,0,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,500.00,'12:00AM','11:00AM',NULL,NULL,'publish',1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.0,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,1,NULL,NULL),
(5,'Studio Allston Hotel','studio-allston-hotel','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',71,96,5,'New York','18.972786','72.819724',12,0,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,500.00,'12:00AM','11:00AM',NULL,NULL,'publish',6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.3,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,6,NULL,NULL),
(6,'EnVision Hotel Boston','envision-hotel-biston','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',72,95,3,'New York','18.873011','72.975724',12,0,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,700.00,'12:00AM','11:00AM',NULL,NULL,'publish',6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.3,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,6,NULL,NULL),
(7,'Crowne Plaza Hotel','crowne-plaza-hotel','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',73,95,2,'New York','19.001355','73.111444',12,0,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,900.00,'12:00AM','11:00AM',NULL,NULL,'publish',6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.7,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,6,NULL,NULL),
(8,'Stewart Hotel','stewart-hotel','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',74,96,5,'New York','19.080542','73.010551',12,0,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,900.00,'12:00AM','11:00AM',NULL,NULL,'publish',4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',5.0,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,4,NULL,NULL),
(9,'Parian Holiday Villas','parian-holiday-villas','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',75,94,1,'Regal Cinemas Battery Park','19.161637','72.997510',12,1,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,550.00,'12:00AM','11:00AM',NULL,NULL,'publish',1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.3,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,1,NULL,NULL),
(10,'Dylan Hotel','dylan-hotel','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',64,94,2,'Regal Cinemas Battery','19.229727','72.984470',12,1,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',5,550.00,'12:00AM','11:00AM',NULL,NULL,'publish',5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.7,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,5,NULL,NULL),
(11,'The May Fair Hotel','the-may-fair-hotel','<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',67,95,1,'Paris Cinemas Battery','19.277696','72.887009',12,0,'97,98,99,100,101,102','https://www.youtube.com/watch?v=bhOiLfkChPo','[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]',4,550.00,'12:00AM','11:00AM',NULL,NULL,'publish',5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:28',4.5,NULL,1,'[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,5,NULL,NULL);
/*!40000 ALTER TABLE `bravo_hotels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_location_translations`
--

DROP TABLE IF EXISTS `bravo_location_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_location_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` bigint(20) DEFAULT NULL,
  `locale` varchar(10) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `trip_ideas` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_location_translations_origin_id_locale_unique` (`origin_id`,`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_location_translations`
--

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

--
-- Table structure for table `bravo_locations`
--

DROP TABLE IF EXISTS `bravo_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_locations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `map_lat` varchar(20) DEFAULT NULL,
  `map_lng` varchar(20) DEFAULT NULL,
  `map_zoom` int(11) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `_lft` int(10) unsigned NOT NULL DEFAULT 0,
  `_rgt` int(10) unsigned NOT NULL DEFAULT 0,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `banner_image_id` int(11) DEFAULT NULL,
  `trip_ideas` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_locations__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_locations`
--

LOCK TABLES `bravo_locations` WRITE;
/*!40000 ALTER TABLE `bravo_locations` DISABLE KEYS */;
INSERT INTO `bravo_locations` (`id`, `name`, `content`, `slug`, `image_id`, `map_lat`, `map_lng`, `map_zoom`, `status`, `_lft`, `_rgt`, `parent_id`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`, `banner_image_id`, `trip_ideas`) VALUES (1,'Paris','New York, a city that doesnt sleep, as Frank Sinatra sang. The Big Apple is one of the largest cities in the United States and one of the most popular in the whole country and the world. Millions of tourists visit it every year attracted by its various iconic symbols and its wide range of leisure and cultural offer. New York is the birth place of new trends and developments in many fields such as art, gastronomy, technology,...','paris',111,'48.856613','2.352222',12,'publish',1,2,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',112,'\"[{\\\"title\\\":\\\"Experiencing the best jazz in Harlem, birthplace of bebop\\\",\\\"link\\\":\\\"#\\\",\\\"content\\\":\\\"New Orleans might be the home of jazz, but New York City is where many of the genre\\u2019s greats became stars \\u2013 and Harlem was at the heart of it.The neighborhood experienced a rebirth during the...\\\",\\\"image_id\\\":\\\"113\\\"},{\\\"title\\\":\\\"Reflections from the road: transformative \\u2018Big Trip\\u2019 experiences\\\",\\\"link\\\":\\\"#\\\",\\\"content\\\":\\\"Whether it\\u2019s a gap year after finishing school, a well-earned sabbatical from work or an overseas adventure in celebration of your retirement, a big trip is a rite of passage for every traveller, with myriad life lessons to be ...\\\",\\\"image_id\\\":\\\"114\\\"}]\"'),
(2,'New York, United States',NULL,'new-york-united-states',107,'40.712776','-74.005974',12,'publish',3,4,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(3,'California',NULL,'california',108,'36.778259','-119.417931',12,'publish',5,6,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(4,'United States',NULL,'united-states',109,'37.090240','-95.712891',12,'publish',7,8,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(5,'Los Angeles',NULL,'los-angeles',110,'34.052235','-118.243683',12,'publish',9,10,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(6,'New Jersey',NULL,'new-jersey',106,'40.058323','-74.405663',12,'publish',11,12,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(7,'San Francisco',NULL,'san-francisco',107,'37.774929','-122.419418',12,'publish',13,14,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(8,'Virginia',NULL,'virginia',108,'37.431572','-78.656891',12,'publish',15,16,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(9,'London',NULL,'london',107,'37.431572','-78.656891',12,'publish',17,18,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(10,'Germany',NULL,'germany',106,'37.431572','-78.656891',12,'publish',19,20,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL);
/*!40000 ALTER TABLE `bravo_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_payouts`
--

DROP TABLE IF EXISTS `bravo_payouts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_payouts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_id` bigint(20) DEFAULT NULL,
  `amount` decimal(10,2) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `payout_method` varchar(50) DEFAULT NULL,
  `account_info` text DEFAULT NULL,
  `note_to_admin` text DEFAULT NULL,
  `note_to_vendor` text DEFAULT NULL,
  `last_process_by` int(11) DEFAULT NULL,
  `pay_date` timestamp NULL DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_payouts`
--

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

--
-- Table structure for table `bravo_plan_trans`
--

DROP TABLE IF EXISTS `bravo_plan_trans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_plan_trans` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_plan_trans_origin_id_locale_unique` (`origin_id`,`locale`),
  KEY `bravo_plan_trans_locale_index` (`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_plan_trans`
--

LOCK TABLES `bravo_plan_trans` WRITE;
/*!40000 ALTER TABLE `bravo_plan_trans` DISABLE KEYS */;
INSERT INTO `bravo_plan_trans` (`id`, `title`, `content`, `create_user`, `update_user`, `origin_id`, `locale`, `deleted_at`, `created_at`, `updated_at`) VALUES (1,'Extended','<ul><li>5 service posting</li><li>2 featured service</li><li>Service displayed for 20 days</li><li>Premium Support 24/7</li></ul>',1,NULL,3,'en',NULL,'2023-03-27 15:41:17','2023-03-27 15:41:17');
/*!40000 ALTER TABLE `bravo_plan_trans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_plans`
--

DROP TABLE IF EXISTS `bravo_plans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_plans` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `duration` int(11) DEFAULT 0,
  `duration_type` varchar(30) DEFAULT NULL,
  `annual_price` decimal(12,2) DEFAULT NULL,
  `max_service` int(11) DEFAULT 0,
  `status` varchar(30) DEFAULT NULL,
  `role_id` bigint(20) DEFAULT NULL,
  `is_recommended` tinyint(4) DEFAULT 1,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_plans`
--

LOCK TABLES `bravo_plans` WRITE;
/*!40000 ALTER TABLE `bravo_plans` DISABLE KEYS */;
INSERT INTO `bravo_plans` (`id`, `title`, `content`, `price`, `duration`, `duration_type`, `annual_price`, `max_service`, `status`, `role_id`, `is_recommended`, `deleted_at`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,'Basic','<ul><li>5 service posting</li><li>2 featured service</li><li>Service displayed for 20 days</li><li>Premium Support 24/7</li></ul>',199.00,1,'month',1199.00,5,'publish',2,0,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(2,'Standard','<ul><li>5 service posting</li><li>2 featured service</li><li>Service displayed for 20 days</li><li>Premium Support 24/7</li></ul>',499.00,1,'month',1499.00,20,'publish',2,1,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(3,'Extended','<ul><li>5 service posting</li><li>2 featured service</li><li>Service displayed for 20 days</li><li>Premium Support 24/7</li></ul>',1000.00,1,'month',1799.00,50,'publish',2,0,NULL,1,NULL,'2023-03-23 08:49:37','2023-03-27 15:41:17');
/*!40000 ALTER TABLE `bravo_plans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_popup_translations`
--

DROP TABLE IF EXISTS `bravo_popup_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_popup_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_popup_translations_origin_id_locale_unique` (`origin_id`,`locale`),
  KEY `bravo_popup_translations_locale_index` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_popup_translations`
--

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

--
-- Table structure for table `bravo_popups`
--

DROP TABLE IF EXISTS `bravo_popups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_popups` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `status` varchar(50) DEFAULT 'draft',
  `include_url` text DEFAULT NULL,
  `exclude_url` text DEFAULT NULL,
  `schedule_type` varchar(191) DEFAULT 'day',
  `schedule_amount` varchar(191) DEFAULT '0',
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_popups`
--

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

--
-- Table structure for table `bravo_review`
--

DROP TABLE IF EXISTS `bravo_review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_review` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `object_id` int(11) DEFAULT NULL,
  `object_model` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `rate_number` int(11) DEFAULT NULL,
  `author_ip` varchar(100) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `publish_date` datetime DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `vendor_id` bigint(20) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=249 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_review`
--

LOCK TABLES `bravo_review` WRITE;
/*!40000 ALTER TABLE `bravo_review` DISABLE KEYS */;
INSERT INTO `bravo_review` (`id`, `object_id`, `object_model`, `title`, `content`, `rate_number`, `author_ip`, `status`, `publish_date`, `create_user`, `update_user`, `deleted_at`, `lang`, `created_at`, `updated_at`, `vendor_id`, `author_id`) VALUES (1,1,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,10),
(2,1,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,9),
(3,2,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,14),
(4,2,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,9),
(5,2,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,13),
(6,3,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,11),
(7,3,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,15),
(8,3,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,16),
(9,3,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,11),
(10,4,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,8),
(11,4,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,16),
(12,4,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,11),
(13,4,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,10),
(14,4,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,10),
(15,5,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,13),
(16,5,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,13),
(17,5,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,14),
(18,5,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,8),
(19,5,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,8),
(20,6,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',6,11),
(21,7,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,14),
(22,7,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,9),
(23,7,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,15),
(24,8,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,12),
(25,8,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,9),
(26,8,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,13),
(27,9,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,10),
(28,9,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,7),
(29,10,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,7),
(30,10,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,10),
(31,10,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,13),
(32,10,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,10),
(33,10,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,10),
(34,11,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,10),
(35,11,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,12),
(36,11,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,9),
(37,11,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,15),
(38,11,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',5,13),
(39,12,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,10),
(40,12,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,9),
(41,12,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,14),
(42,12,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,8),
(43,13,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,12),
(44,13,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,14),
(45,13,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,14),
(46,14,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,7),
(47,14,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,12),
(48,14,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,15),
(49,14,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,10),
(50,14,'tour','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,16),
(51,15,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,9),
(52,15,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,12),
(53,15,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,16),
(54,15,'tour','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,13),
(55,15,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',4,13),
(56,16,'tour','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,7),
(57,16,'tour','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,8),
(58,1,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',14,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,14),
(59,1,'space','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:26',11,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,11),
(60,2,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',16,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,16),
(61,2,'space','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',11,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,11),
(62,2,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:26',16,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,16),
(63,3,'space','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',16,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,16),
(64,3,'space','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',11,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,11),
(65,3,'space','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',7,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,7),
(66,4,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',15,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,15),
(67,4,'space','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',11,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,11),
(68,4,'space','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',8,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,8),
(69,5,'space','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',14,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,14),
(70,5,'space','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',16,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,16),
(71,5,'space','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',11,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,11),
(72,5,'space','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',10,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,10),
(73,6,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',10,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,10),
(74,6,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',15,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,15),
(75,7,'space','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',9,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,9),
(76,7,'space','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',10,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,10),
(77,7,'space','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',10,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,10),
(78,8,'space','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',10,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,10),
(79,8,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',14,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,14),
(80,8,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',9,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,9),
(81,8,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',16,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,16),
(82,9,'space','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',12,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,12),
(83,9,'space','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',10,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,10),
(84,9,'space','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',9,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,9),
(85,9,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',15,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,15),
(86,10,'space','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',16,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,16),
(87,10,'space','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',9,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,9),
(88,11,'space','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',8,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,8),
(89,11,'space','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',11,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,11),
(90,1,'hotel','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',10,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,10),
(91,1,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',13,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,13),
(92,1,'hotel','Beautiful spot with a lovely view','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',13,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,13),
(93,2,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',11,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,11),
(94,2,'hotel','Beautiful spot with a lovely view','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',13,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,13),
(95,2,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',8,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,8),
(96,2,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',13,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,13),
(97,2,'hotel','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',14,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,14),
(98,3,'hotel','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',9,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,9),
(99,4,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',11,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,11),
(100,4,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',11,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,11),
(101,4,'hotel','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',8,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,8),
(102,4,'hotel','Beautiful spot with a lovely view','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',8,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,8),
(103,5,'hotel','Beautiful spot with a lovely view','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',14,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,14),
(104,5,'hotel','Beautiful spot with a lovely view','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',7,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,7),
(105,5,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',9,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,9),
(106,6,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',15,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,15),
(107,6,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',8,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,8),
(108,6,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',7,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,7),
(109,6,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',13,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,13),
(110,7,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',13,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,13),
(111,7,'hotel','Beautiful spot with a lovely view','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',15,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,15),
(112,7,'hotel','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',14,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',6,14),
(113,8,'hotel','Beautiful spot with a lovely view','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',7,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',4,7),
(114,8,'hotel','Beautiful spot with a lovely view','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',14,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',4,14),
(115,9,'hotel','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',8,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,8),
(116,9,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',10,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,10),
(117,9,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',15,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,15),
(118,9,'hotel','Beautiful spot with a lovely view','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',16,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',1,16),
(119,10,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',13,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,13),
(120,10,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',7,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,7),
(121,10,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',8,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,8),
(122,11,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',11,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,11),
(123,11,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',16,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,16),
(124,11,'hotel','Good location, quality should be better','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:27',10,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,10),
(125,11,'hotel','Nothing good this time','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:27',15,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',5,15),
(126,1,'car','Good Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',10,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,10),
(127,1,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:28',9,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,9),
(128,2,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:28',15,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,15),
(129,2,'car','Car was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:28',9,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,9),
(130,3,'car','Car was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:28',8,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,8),
(131,3,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:28',8,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,8),
(132,3,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:28',12,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,12),
(133,4,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',15,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,15),
(134,4,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',16,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,16),
(135,4,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:28',15,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,15),
(136,4,'car','Good Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',12,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,12),
(137,5,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',10,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,10),
(138,5,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',15,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,15),
(139,5,'car','Car was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',15,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,15),
(140,5,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:28',8,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,8),
(141,5,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',8,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',1,8),
(142,6,'car','Good Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',9,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',6,9),
(143,6,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:28',15,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',6,15),
(144,7,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:28',9,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',5,9),
(145,7,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',9,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,9),
(146,7,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',11,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,11),
(147,8,'car','Car was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,12),
(148,8,'car','Car was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',11,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,11),
(149,8,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',11,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,11),
(150,8,'car','Good Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',7,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,7),
(151,9,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',9,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,9),
(152,9,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',14,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,14),
(153,9,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',8,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,8),
(154,10,'car','Car was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',9,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,9),
(155,10,'car','Car was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,12),
(156,10,'car','Good Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',8,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,8),
(157,10,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',7,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,7),
(158,10,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',16,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,16),
(159,11,'car','Car was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',11,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,11),
(160,11,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',7,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,7),
(161,11,'car','Good Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',8,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,8),
(162,12,'car','Car was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,12),
(163,12,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',11,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,11),
(164,12,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',7,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,7),
(165,12,'car','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,12),
(166,13,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,12),
(167,13,'car','Great Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',14,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,14),
(168,13,'car','Good Car','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',13,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,13),
(169,1,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',16,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,16),
(170,1,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',15,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,15),
(171,1,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',13,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,13),
(172,2,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',11,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,11),
(173,2,'event','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',15,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,15),
(174,2,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',14,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,14),
(175,3,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,12),
(176,3,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,12),
(177,3,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',9,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,9),
(178,4,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',8,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,8),
(179,4,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',16,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,16),
(180,4,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',8,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,8),
(181,4,'event','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',11,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,11),
(182,5,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',11,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,11),
(183,5,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',7,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,7),
(184,5,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',7,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,7),
(185,6,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,12),
(186,6,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',14,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,14),
(187,6,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',16,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,16),
(188,7,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',8,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,8),
(189,7,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',16,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,16),
(190,8,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',7,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,7),
(191,8,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',15,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,15),
(192,8,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,12),
(193,8,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',10,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,10),
(194,9,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',16,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,16),
(195,9,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',9,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,9),
(196,9,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',11,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',4,11),
(197,10,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',10,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,10),
(198,10,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,12),
(199,10,'event','Trip was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',13,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',5,13),
(200,11,'event','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',12,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,12),
(201,11,'event','Great Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',15,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,15),
(202,11,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:29',14,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',6,14),
(203,12,'event','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',8,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,8),
(204,12,'event','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',8,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,8),
(205,12,'event','Good Trip','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:29',8,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',1,8),
(206,1,'boat','Boat was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',7,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,7),
(207,1,'boat','Boat was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',14,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,14),
(208,2,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',14,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,14),
(209,2,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',7,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,7),
(210,2,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',12,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,12),
(211,3,'boat','Boat was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',16,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,16),
(212,3,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',9,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,9),
(213,3,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',14,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,14),
(214,3,'boat','Boat was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',13,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,13),
(215,4,'boat','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',12,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,12),
(216,4,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',7,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,7),
(217,4,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',15,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,15),
(218,4,'boat','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',7,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,7),
(219,5,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',16,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,16),
(220,5,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',16,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,16),
(221,5,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',14,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',1,14),
(222,6,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',13,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,13),
(223,6,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',12,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,12),
(224,6,'boat','Easy way to discover the city','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',13,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,13),
(225,7,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',11,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,11),
(226,7,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',11,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,11),
(227,8,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',14,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,14),
(228,8,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',15,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,15),
(229,8,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',14,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,14),
(230,9,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',11,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,11),
(231,9,'boat','Boat was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',13,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,13),
(232,9,'boat','Boat was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',12,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,12),
(233,9,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',7,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,7),
(234,10,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',14,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,14),
(235,10,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',7,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,7),
(236,10,'boat','Boat was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',15,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,15),
(237,10,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',14,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',6,14),
(238,11,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',9,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,9),
(239,11,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',11,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,11),
(240,11,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',7,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,7),
(241,11,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',9,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,9),
(242,12,'boat','Boat was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',16,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,16),
(243,12,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',10,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,10),
(244,12,'boat','Boat was great','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',15,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,15),
(245,12,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',5,'127.0.0.1','approved','2023-03-23 09:49:31',14,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,14),
(246,13,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',13,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,13),
(247,13,'boat','Great Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',15,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,15),
(248,13,'boat','Good Boat','Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te',4,'127.0.0.1','approved','2023-03-23 09:49:31',8,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',4,8);
/*!40000 ALTER TABLE `bravo_review` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_review_meta`
--

DROP TABLE IF EXISTS `bravo_review_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_review_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `review_id` int(11) DEFAULT NULL,
  `object_id` int(11) DEFAULT NULL,
  `object_model` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `val` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1241 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_review_meta`
--

LOCK TABLES `bravo_review_meta` WRITE;
/*!40000 ALTER TABLE `bravo_review_meta` DISABLE KEYS */;
INSERT INTO `bravo_review_meta` (`id`, `review_id`, `object_id`, `object_model`, `name`, `val`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,1,1,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(2,1,1,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(3,1,1,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(4,1,1,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(5,1,1,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(6,2,1,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(7,2,1,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(8,2,1,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(9,2,1,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(10,2,1,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(11,3,2,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(12,3,2,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(13,3,2,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(14,3,2,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(15,3,2,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(16,4,2,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(17,4,2,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(18,4,2,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(19,4,2,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(20,4,2,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(21,5,2,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(22,5,2,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(23,5,2,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(24,5,2,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(25,5,2,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(26,6,3,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(27,6,3,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(28,6,3,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(29,6,3,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(30,6,3,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(31,7,3,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(32,7,3,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(33,7,3,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(34,7,3,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(35,7,3,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(36,8,3,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(37,8,3,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(38,8,3,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(39,8,3,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(40,8,3,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(41,9,3,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(42,9,3,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(43,9,3,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(44,9,3,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(45,9,3,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(46,10,4,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(47,10,4,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(48,10,4,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(49,10,4,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(50,10,4,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(51,11,4,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(52,11,4,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(53,11,4,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(54,11,4,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(55,11,4,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(56,12,4,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(57,12,4,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(58,12,4,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(59,12,4,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(60,12,4,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(61,13,4,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(62,13,4,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(63,13,4,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(64,13,4,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(65,13,4,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(66,14,4,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(67,14,4,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(68,14,4,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(69,14,4,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(70,14,4,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(71,15,5,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(72,15,5,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(73,15,5,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(74,15,5,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(75,15,5,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(76,16,5,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(77,16,5,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(78,16,5,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(79,16,5,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(80,16,5,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(81,17,5,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(82,17,5,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(83,17,5,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(84,17,5,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(85,17,5,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(86,18,5,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(87,18,5,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(88,18,5,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(89,18,5,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(90,18,5,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(91,19,5,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(92,19,5,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(93,19,5,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(94,19,5,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(95,19,5,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(96,20,6,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(97,20,6,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(98,20,6,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(99,20,6,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(100,20,6,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(101,21,7,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(102,21,7,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(103,21,7,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(104,21,7,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(105,21,7,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(106,22,7,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(107,22,7,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(108,22,7,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(109,22,7,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(110,22,7,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(111,23,7,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(112,23,7,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(113,23,7,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(114,23,7,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(115,23,7,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(116,24,8,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(117,24,8,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(118,24,8,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(119,24,8,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(120,24,8,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(121,25,8,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(122,25,8,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(123,25,8,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(124,25,8,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(125,25,8,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(126,26,8,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(127,26,8,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(128,26,8,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(129,26,8,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(130,26,8,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(131,27,9,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(132,27,9,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(133,27,9,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(134,27,9,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(135,27,9,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(136,28,9,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(137,28,9,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(138,28,9,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(139,28,9,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(140,28,9,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(141,29,10,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(142,29,10,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(143,29,10,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(144,29,10,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(145,29,10,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(146,30,10,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(147,30,10,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(148,30,10,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(149,30,10,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(150,30,10,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(151,31,10,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(152,31,10,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(153,31,10,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(154,31,10,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(155,31,10,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(156,32,10,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(157,32,10,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(158,32,10,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(159,32,10,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(160,32,10,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(161,33,10,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(162,33,10,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(163,33,10,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(164,33,10,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(165,33,10,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(166,34,11,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(167,34,11,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(168,34,11,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(169,34,11,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(170,34,11,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(171,35,11,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(172,35,11,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(173,35,11,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(174,35,11,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(175,35,11,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(176,36,11,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(177,36,11,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(178,36,11,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(179,36,11,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(180,36,11,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(181,37,11,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(182,37,11,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(183,37,11,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(184,37,11,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(185,37,11,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(186,38,11,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(187,38,11,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(188,38,11,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(189,38,11,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(190,38,11,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(191,39,12,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(192,39,12,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(193,39,12,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(194,39,12,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(195,39,12,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(196,40,12,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(197,40,12,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(198,40,12,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(199,40,12,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(200,40,12,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(201,41,12,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(202,41,12,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(203,41,12,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(204,41,12,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(205,41,12,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(206,42,12,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(207,42,12,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(208,42,12,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(209,42,12,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(210,42,12,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(211,43,13,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(212,43,13,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(213,43,13,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(214,43,13,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(215,43,13,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(216,44,13,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(217,44,13,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(218,44,13,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(219,44,13,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(220,44,13,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(221,45,13,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(222,45,13,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(223,45,13,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(224,45,13,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(225,45,13,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(226,46,14,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(227,46,14,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(228,46,14,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(229,46,14,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(230,46,14,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(231,47,14,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(232,47,14,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(233,47,14,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(234,47,14,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(235,47,14,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(236,48,14,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(237,48,14,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(238,48,14,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(239,48,14,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(240,48,14,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(241,49,14,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(242,49,14,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(243,49,14,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(244,49,14,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(245,49,14,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(246,50,14,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(247,50,14,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(248,50,14,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(249,50,14,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(250,50,14,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(251,51,15,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(252,51,15,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(253,51,15,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(254,51,15,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(255,51,15,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(256,52,15,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(257,52,15,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(258,52,15,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(259,52,15,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(260,52,15,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(261,53,15,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(262,53,15,'tour','Organization','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(263,53,15,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(264,53,15,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(265,53,15,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(266,54,15,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(267,54,15,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(268,54,15,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(269,54,15,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(270,54,15,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(271,55,15,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(272,55,15,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(273,55,15,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(274,55,15,'tour','Area Expert','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(275,55,15,'tour','Safety','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(276,56,16,'tour','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(277,56,16,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(278,56,16,'tour','Friendliness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(279,56,16,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(280,56,16,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(281,57,16,'tour','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(282,57,16,'tour','Organization','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(283,57,16,'tour','Friendliness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(284,57,16,'tour','Area Expert','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(285,57,16,'tour','Safety','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(286,58,1,'space','Sleep','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(287,58,1,'space','Location','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(288,58,1,'space','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(289,58,1,'space','Clearness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(290,58,1,'space','Rooms','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(291,59,1,'space','Sleep','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(292,59,1,'space','Location','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(293,59,1,'space','Service','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(294,59,1,'space','Clearness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(295,59,1,'space','Rooms','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(296,60,2,'space','Sleep','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(297,60,2,'space','Location','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(298,60,2,'space','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(299,60,2,'space','Clearness','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(300,60,2,'space','Rooms','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(301,61,2,'space','Sleep','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(302,61,2,'space','Location','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(303,61,2,'space','Service','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(304,61,2,'space','Clearness','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(305,61,2,'space','Rooms','5',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(306,62,2,'space','Sleep','4',1,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(307,62,2,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(308,62,2,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(309,62,2,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(310,62,2,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(311,63,3,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(312,63,3,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(313,63,3,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(314,63,3,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(315,63,3,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(316,64,3,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(317,64,3,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(318,64,3,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(319,64,3,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(320,64,3,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(321,65,3,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(322,65,3,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(323,65,3,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(324,65,3,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(325,65,3,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(326,66,4,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(327,66,4,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(328,66,4,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(329,66,4,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(330,66,4,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(331,67,4,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(332,67,4,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(333,67,4,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(334,67,4,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(335,67,4,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(336,68,4,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(337,68,4,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(338,68,4,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(339,68,4,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(340,68,4,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(341,69,5,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(342,69,5,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(343,69,5,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(344,69,5,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(345,69,5,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(346,70,5,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(347,70,5,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(348,70,5,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(349,70,5,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(350,70,5,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(351,71,5,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(352,71,5,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(353,71,5,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(354,71,5,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(355,71,5,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(356,72,5,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(357,72,5,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(358,72,5,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(359,72,5,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(360,72,5,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(361,73,6,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(362,73,6,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(363,73,6,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(364,73,6,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(365,73,6,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(366,74,6,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(367,74,6,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(368,74,6,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(369,74,6,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(370,74,6,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(371,75,7,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(372,75,7,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(373,75,7,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(374,75,7,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(375,75,7,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(376,76,7,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(377,76,7,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(378,76,7,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(379,76,7,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(380,76,7,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(381,77,7,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(382,77,7,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(383,77,7,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(384,77,7,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(385,77,7,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(386,78,8,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(387,78,8,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(388,78,8,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(389,78,8,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(390,78,8,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(391,79,8,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(392,79,8,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(393,79,8,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(394,79,8,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(395,79,8,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(396,80,8,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(397,80,8,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(398,80,8,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(399,80,8,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(400,80,8,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(401,81,8,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(402,81,8,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(403,81,8,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(404,81,8,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(405,81,8,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(406,82,9,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(407,82,9,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(408,82,9,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(409,82,9,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(410,82,9,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(411,83,9,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(412,83,9,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(413,83,9,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(414,83,9,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(415,83,9,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(416,84,9,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(417,84,9,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(418,84,9,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(419,84,9,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(420,84,9,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(421,85,9,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(422,85,9,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(423,85,9,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(424,85,9,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(425,85,9,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(426,86,10,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(427,86,10,'space','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(428,86,10,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(429,86,10,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(430,86,10,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(431,87,10,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(432,87,10,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(433,87,10,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(434,87,10,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(435,87,10,'space','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(436,88,11,'space','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(437,88,11,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(438,88,11,'space','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(439,88,11,'space','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(440,88,11,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(441,89,11,'space','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(442,89,11,'space','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(443,89,11,'space','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(444,89,11,'space','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(445,89,11,'space','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(446,90,1,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(447,90,1,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(448,90,1,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(449,90,1,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(450,90,1,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(451,91,1,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(452,91,1,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(453,91,1,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(454,91,1,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(455,91,1,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(456,92,1,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(457,92,1,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(458,92,1,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(459,92,1,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(460,92,1,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(461,93,2,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(462,93,2,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(463,93,2,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(464,93,2,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(465,93,2,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(466,94,2,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(467,94,2,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(468,94,2,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(469,94,2,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(470,94,2,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(471,95,2,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(472,95,2,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(473,95,2,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(474,95,2,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(475,95,2,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(476,96,2,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(477,96,2,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(478,96,2,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(479,96,2,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(480,96,2,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(481,97,2,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(482,97,2,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(483,97,2,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(484,97,2,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(485,97,2,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(486,98,3,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(487,98,3,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(488,98,3,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(489,98,3,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(490,98,3,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(491,99,4,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(492,99,4,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(493,99,4,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(494,99,4,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(495,99,4,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(496,100,4,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(497,100,4,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(498,100,4,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(499,100,4,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(500,100,4,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(501,101,4,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(502,101,4,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(503,101,4,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(504,101,4,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(505,101,4,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(506,102,4,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(507,102,4,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(508,102,4,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(509,102,4,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(510,102,4,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(511,103,5,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(512,103,5,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(513,103,5,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(514,103,5,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(515,103,5,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(516,104,5,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(517,104,5,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(518,104,5,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(519,104,5,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(520,104,5,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(521,105,5,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(522,105,5,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(523,105,5,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(524,105,5,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(525,105,5,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(526,106,6,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(527,106,6,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(528,106,6,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(529,106,6,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(530,106,6,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(531,107,6,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(532,107,6,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(533,107,6,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(534,107,6,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(535,107,6,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(536,108,6,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(537,108,6,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(538,108,6,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(539,108,6,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(540,108,6,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(541,109,6,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(542,109,6,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(543,109,6,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(544,109,6,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(545,109,6,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(546,110,7,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(547,110,7,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(548,110,7,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(549,110,7,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(550,110,7,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(551,111,7,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(552,111,7,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(553,111,7,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(554,111,7,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(555,111,7,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(556,112,7,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(557,112,7,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(558,112,7,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(559,112,7,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(560,112,7,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(561,113,8,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(562,113,8,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(563,113,8,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(564,113,8,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(565,113,8,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(566,114,8,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(567,114,8,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(568,114,8,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(569,114,8,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(570,114,8,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(571,115,9,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(572,115,9,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(573,115,9,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(574,115,9,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(575,115,9,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(576,116,9,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(577,116,9,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(578,116,9,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(579,116,9,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(580,116,9,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(581,117,9,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(582,117,9,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(583,117,9,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(584,117,9,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(585,117,9,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(586,118,9,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(587,118,9,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(588,118,9,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(589,118,9,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(590,118,9,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(591,119,10,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(592,119,10,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(593,119,10,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(594,119,10,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(595,119,10,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(596,120,10,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(597,120,10,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(598,120,10,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(599,120,10,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(600,120,10,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(601,121,10,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(602,121,10,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(603,121,10,'hotel','Service','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(604,121,10,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(605,121,10,'hotel','Rooms','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(606,122,11,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(607,122,11,'hotel','Location','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(608,122,11,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(609,122,11,'hotel','Clearness','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(610,122,11,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(611,123,11,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(612,123,11,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(613,123,11,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(614,123,11,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(615,123,11,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(616,124,11,'hotel','Sleep','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(617,124,11,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(618,124,11,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(619,124,11,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(620,124,11,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(621,125,11,'hotel','Sleep','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(622,125,11,'hotel','Location','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(623,125,11,'hotel','Service','4',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(624,125,11,'hotel','Clearness','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(625,125,11,'hotel','Rooms','5',1,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(626,126,1,'car','Equipment','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(627,126,1,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(628,126,1,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(629,126,1,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(630,126,1,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(631,127,1,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(632,127,1,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(633,127,1,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(634,127,1,'car','Facility','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(635,127,1,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(636,128,2,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(637,128,2,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(638,128,2,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(639,128,2,'car','Facility','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(640,128,2,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(641,129,2,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(642,129,2,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(643,129,2,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(644,129,2,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(645,129,2,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(646,130,3,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(647,130,3,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(648,130,3,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(649,130,3,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(650,130,3,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(651,131,3,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(652,131,3,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(653,131,3,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(654,131,3,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(655,131,3,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(656,132,3,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(657,132,3,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(658,132,3,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(659,132,3,'car','Facility','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(660,132,3,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(661,133,4,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(662,133,4,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(663,133,4,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(664,133,4,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(665,133,4,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(666,134,4,'car','Equipment','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(667,134,4,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(668,134,4,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(669,134,4,'car','Facility','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(670,134,4,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(671,135,4,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(672,135,4,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(673,135,4,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(674,135,4,'car','Facility','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(675,135,4,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(676,136,4,'car','Equipment','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(677,136,4,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(678,136,4,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(679,136,4,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(680,136,4,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(681,137,5,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(682,137,5,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(683,137,5,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(684,137,5,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(685,137,5,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(686,138,5,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(687,138,5,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(688,138,5,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(689,138,5,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(690,138,5,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(691,139,5,'car','Equipment','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(692,139,5,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(693,139,5,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(694,139,5,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(695,139,5,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(696,140,5,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(697,140,5,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(698,140,5,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(699,140,5,'car','Facility','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(700,140,5,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(701,141,5,'car','Equipment','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(702,141,5,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(703,141,5,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(704,141,5,'car','Facility','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(705,141,5,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(706,142,6,'car','Equipment','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(707,142,6,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(708,142,6,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(709,142,6,'car','Facility','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(710,142,6,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(711,143,6,'car','Equipment','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(712,143,6,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(713,143,6,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(714,143,6,'car','Facility','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(715,143,6,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(716,144,7,'car','Equipment','5',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(717,144,7,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28'),
(718,144,7,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(719,144,7,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(720,144,7,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(721,145,7,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(722,145,7,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(723,145,7,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(724,145,7,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(725,145,7,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(726,146,7,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(727,146,7,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(728,146,7,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(729,146,7,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(730,146,7,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(731,147,8,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(732,147,8,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(733,147,8,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(734,147,8,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(735,147,8,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(736,148,8,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(737,148,8,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(738,148,8,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(739,148,8,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(740,148,8,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(741,149,8,'car','Equipment','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(742,149,8,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(743,149,8,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(744,149,8,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(745,149,8,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(746,150,8,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(747,150,8,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(748,150,8,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(749,150,8,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(750,150,8,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(751,151,9,'car','Equipment','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(752,151,9,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(753,151,9,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(754,151,9,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(755,151,9,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(756,152,9,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(757,152,9,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(758,152,9,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(759,152,9,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(760,152,9,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(761,153,9,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(762,153,9,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(763,153,9,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(764,153,9,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(765,153,9,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(766,154,10,'car','Equipment','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(767,154,10,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(768,154,10,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(769,154,10,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(770,154,10,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(771,155,10,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(772,155,10,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(773,155,10,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(774,155,10,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(775,155,10,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(776,156,10,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(777,156,10,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(778,156,10,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(779,156,10,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(780,156,10,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(781,157,10,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(782,157,10,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(783,157,10,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(784,157,10,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(785,157,10,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(786,158,10,'car','Equipment','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(787,158,10,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(788,158,10,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(789,158,10,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(790,158,10,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(791,159,11,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(792,159,11,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(793,159,11,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(794,159,11,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(795,159,11,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(796,160,11,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(797,160,11,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(798,160,11,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(799,160,11,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(800,160,11,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(801,161,11,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(802,161,11,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(803,161,11,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(804,161,11,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(805,161,11,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(806,162,12,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(807,162,12,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(808,162,12,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(809,162,12,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(810,162,12,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(811,163,12,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(812,163,12,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(813,163,12,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(814,163,12,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(815,163,12,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(816,164,12,'car','Equipment','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(817,164,12,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(818,164,12,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(819,164,12,'car','Facility','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(820,164,12,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(821,165,12,'car','Equipment','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(822,165,12,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(823,165,12,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(824,165,12,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(825,165,12,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(826,166,13,'car','Equipment','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(827,166,13,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(828,166,13,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(829,166,13,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(830,166,13,'car','Aftercare','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(831,167,13,'car','Equipment','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(832,167,13,'car','Comfortable','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(833,167,13,'car','Climate Control','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(834,167,13,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(835,167,13,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(836,168,13,'car','Equipment','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(837,168,13,'car','Comfortable','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(838,168,13,'car','Climate Control','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(839,168,13,'car','Facility','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(840,168,13,'car','Aftercare','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(841,169,1,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(842,169,1,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(843,169,1,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(844,169,1,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(845,169,1,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(846,170,1,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(847,170,1,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(848,170,1,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(849,170,1,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(850,170,1,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(851,171,1,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(852,171,1,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(853,171,1,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(854,171,1,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(855,171,1,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(856,172,2,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(857,172,2,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(858,172,2,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(859,172,2,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(860,172,2,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(861,173,2,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(862,173,2,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(863,173,2,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(864,173,2,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(865,173,2,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(866,174,2,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(867,174,2,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(868,174,2,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(869,174,2,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(870,174,2,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(871,175,3,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(872,175,3,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(873,175,3,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(874,175,3,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(875,175,3,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(876,176,3,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(877,176,3,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(878,176,3,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(879,176,3,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(880,176,3,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(881,177,3,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(882,177,3,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(883,177,3,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(884,177,3,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(885,177,3,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(886,178,4,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(887,178,4,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(888,178,4,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(889,178,4,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(890,178,4,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(891,179,4,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(892,179,4,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(893,179,4,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(894,179,4,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(895,179,4,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(896,180,4,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(897,180,4,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(898,180,4,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(899,180,4,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(900,180,4,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(901,181,4,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(902,181,4,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(903,181,4,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(904,181,4,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(905,181,4,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(906,182,5,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(907,182,5,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(908,182,5,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(909,182,5,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(910,182,5,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(911,183,5,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(912,183,5,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(913,183,5,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(914,183,5,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(915,183,5,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(916,184,5,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(917,184,5,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(918,184,5,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(919,184,5,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(920,184,5,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(921,185,6,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(922,185,6,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(923,185,6,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(924,185,6,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(925,185,6,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(926,186,6,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(927,186,6,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(928,186,6,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(929,186,6,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(930,186,6,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(931,187,6,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(932,187,6,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(933,187,6,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(934,187,6,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(935,187,6,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(936,188,7,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(937,188,7,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(938,188,7,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(939,188,7,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(940,188,7,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(941,189,7,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(942,189,7,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(943,189,7,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(944,189,7,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(945,189,7,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(946,190,8,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(947,190,8,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(948,190,8,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(949,190,8,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(950,190,8,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(951,191,8,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(952,191,8,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(953,191,8,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(954,191,8,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(955,191,8,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(956,192,8,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(957,192,8,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(958,192,8,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(959,192,8,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(960,192,8,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(961,193,8,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(962,193,8,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(963,193,8,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(964,193,8,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(965,193,8,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(966,194,9,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(967,194,9,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(968,194,9,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(969,194,9,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(970,194,9,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(971,195,9,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(972,195,9,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(973,195,9,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(974,195,9,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(975,195,9,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(976,196,9,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(977,196,9,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(978,196,9,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(979,196,9,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(980,196,9,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(981,197,10,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(982,197,10,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(983,197,10,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(984,197,10,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(985,197,10,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(986,198,10,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(987,198,10,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(988,198,10,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(989,198,10,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(990,198,10,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(991,199,10,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(992,199,10,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(993,199,10,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(994,199,10,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(995,199,10,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(996,200,11,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(997,200,11,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(998,200,11,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(999,200,11,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1000,200,11,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1001,201,11,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1002,201,11,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1003,201,11,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1004,201,11,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1005,201,11,'event','Safety','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1006,202,11,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1007,202,11,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1008,202,11,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1009,202,11,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1010,202,11,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1011,203,12,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1012,203,12,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1013,203,12,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1014,203,12,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1015,203,12,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1016,204,12,'event','Service','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1017,204,12,'event','Organization','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1018,204,12,'event','Friendliness','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1019,204,12,'event','Area Expert','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1020,204,12,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1021,205,12,'event','Service','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1022,205,12,'event','Organization','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1023,205,12,'event','Friendliness','5',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1024,205,12,'event','Area Expert','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1025,205,12,'event','Safety','4',1,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29'),
(1026,206,1,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1027,206,1,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1028,206,1,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1029,206,1,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1030,206,1,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1031,207,1,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1032,207,1,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1033,207,1,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1034,207,1,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1035,207,1,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1036,208,2,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1037,208,2,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1038,208,2,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1039,208,2,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1040,208,2,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1041,209,2,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1042,209,2,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1043,209,2,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1044,209,2,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1045,209,2,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1046,210,2,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1047,210,2,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1048,210,2,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1049,210,2,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1050,210,2,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1051,211,3,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1052,211,3,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1053,211,3,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1054,211,3,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1055,211,3,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1056,212,3,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1057,212,3,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1058,212,3,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1059,212,3,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1060,212,3,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1061,213,3,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1062,213,3,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1063,213,3,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1064,213,3,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1065,213,3,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1066,214,3,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1067,214,3,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1068,214,3,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1069,214,3,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1070,214,3,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1071,215,4,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1072,215,4,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1073,215,4,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1074,215,4,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1075,215,4,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1076,216,4,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1077,216,4,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1078,216,4,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1079,216,4,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1080,216,4,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1081,217,4,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1082,217,4,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1083,217,4,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1084,217,4,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1085,217,4,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1086,218,4,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1087,218,4,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1088,218,4,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1089,218,4,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1090,218,4,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1091,219,5,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1092,219,5,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1093,219,5,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1094,219,5,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1095,219,5,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1096,220,5,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1097,220,5,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1098,220,5,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1099,220,5,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1100,220,5,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1101,221,5,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1102,221,5,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1103,221,5,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1104,221,5,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1105,221,5,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1106,222,6,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1107,222,6,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1108,222,6,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1109,222,6,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1110,222,6,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1111,223,6,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1112,223,6,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1113,223,6,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1114,223,6,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1115,223,6,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1116,224,6,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1117,224,6,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1118,224,6,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1119,224,6,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1120,224,6,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1121,225,7,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1122,225,7,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1123,225,7,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1124,225,7,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1125,225,7,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1126,226,7,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1127,226,7,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1128,226,7,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1129,226,7,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1130,226,7,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1131,227,8,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1132,227,8,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1133,227,8,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1134,227,8,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1135,227,8,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1136,228,8,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1137,228,8,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1138,228,8,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1139,228,8,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1140,228,8,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1141,229,8,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1142,229,8,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1143,229,8,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1144,229,8,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1145,229,8,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1146,230,9,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1147,230,9,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1148,230,9,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1149,230,9,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1150,230,9,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1151,231,9,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1152,231,9,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1153,231,9,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1154,231,9,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1155,231,9,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1156,232,9,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1157,232,9,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1158,232,9,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1159,232,9,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1160,232,9,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1161,233,9,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1162,233,9,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1163,233,9,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1164,233,9,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1165,233,9,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1166,234,10,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1167,234,10,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1168,234,10,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1169,234,10,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1170,234,10,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1171,235,10,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1172,235,10,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1173,235,10,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1174,235,10,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1175,235,10,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1176,236,10,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1177,236,10,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1178,236,10,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1179,236,10,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1180,236,10,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1181,237,10,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1182,237,10,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1183,237,10,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1184,237,10,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1185,237,10,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1186,238,11,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1187,238,11,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1188,238,11,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1189,238,11,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1190,238,11,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1191,239,11,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1192,239,11,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1193,239,11,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1194,239,11,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1195,239,11,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1196,240,11,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1197,240,11,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1198,240,11,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1199,240,11,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1200,240,11,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1201,241,11,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1202,241,11,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1203,241,11,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1204,241,11,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1205,241,11,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1206,242,12,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1207,242,12,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1208,242,12,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1209,242,12,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1210,242,12,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1211,243,12,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1212,243,12,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1213,243,12,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1214,243,12,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1215,243,12,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1216,244,12,'boat','Equipment','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1217,244,12,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1218,244,12,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1219,244,12,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1220,244,12,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1221,245,12,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1222,245,12,'boat','Comfortable','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1223,245,12,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1224,245,12,'boat','Facility','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1225,245,12,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1226,246,13,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1227,246,13,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1228,246,13,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1229,246,13,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1230,246,13,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1231,247,13,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1232,247,13,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1233,247,13,'boat','Climate Control','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1234,247,13,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1235,247,13,'boat','Aftercare','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1236,248,13,'boat','Equipment','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1237,248,13,'boat','Comfortable','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1238,248,13,'boat','Climate Control','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1239,248,13,'boat','Facility','4',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31'),
(1240,248,13,'boat','Aftercare','5',1,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31');
/*!40000 ALTER TABLE `bravo_review_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_seat_type`
--

DROP TABLE IF EXISTS `bravo_seat_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_seat_type` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(191) NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_seat_type_code_unique` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_seat_type`
--

LOCK TABLES `bravo_seat_type` WRITE;
/*!40000 ALTER TABLE `bravo_seat_type` DISABLE KEYS */;
INSERT INTO `bravo_seat_type` (`id`, `code`, `name`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `author_id`) VALUES (1,'vip','Vip',NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(2,'eco','Economy',NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(3,'premium','Premium',NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(4,'business','Business',NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL),
(5,'fist_class','First Class',NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL);
/*!40000 ALTER TABLE `bravo_seat_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_seo`
--

DROP TABLE IF EXISTS `bravo_seo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_seo` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `object_id` int(11) DEFAULT NULL,
  `object_model` varchar(255) DEFAULT NULL,
  `seo_index` tinyint(4) DEFAULT NULL,
  `seo_title` varchar(255) DEFAULT NULL,
  `seo_desc` text DEFAULT NULL,
  `seo_image` int(11) DEFAULT NULL,
  `seo_share` text DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_seo`
--

LOCK TABLES `bravo_seo` WRITE;
/*!40000 ALTER TABLE `bravo_seo` DISABLE KEYS */;
INSERT INTO `bravo_seo` (`id`, `object_id`, `object_model`, `seo_index`, `seo_title`, `seo_desc`, `seo_image`, `seo_share`, `create_user`, `update_user`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1,45,'hotel_room',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'2023-09-19 06:23:10','2023-09-19 06:23:10'),
(2,1,'hotel_room_translation',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'2023-09-19 06:23:10','2023-09-19 06:23:10'),
(3,17,'tour',1,NULL,NULL,227,'{\"facebook\":{\"title\":null,\"desc\":null,\"image\":null},\"twitter\":{\"title\":null,\"desc\":null,\"image\":null}}',1,NULL,NULL,NULL,'2023-10-31 09:16:40','2023-10-31 09:16:40'),
(4,1,'tour_translation',1,NULL,NULL,227,'{\"facebook\":{\"title\":null,\"desc\":null,\"image\":null},\"twitter\":{\"title\":null,\"desc\":null,\"image\":null}}',1,NULL,NULL,NULL,'2023-10-31 09:16:40','2023-10-31 09:16:40'),
(5,2,'page',1,NULL,NULL,NULL,'{\"facebook\":{\"title\":null,\"desc\":null,\"image\":null},\"twitter\":{\"title\":null,\"desc\":null,\"image\":null}}',1,NULL,NULL,NULL,'2024-08-13 04:32:33','2024-08-13 04:32:33'),
(6,1,'page_translation',1,NULL,NULL,NULL,'{\"facebook\":{\"title\":null,\"desc\":null,\"image\":null},\"twitter\":{\"title\":null,\"desc\":null,\"image\":null}}',1,NULL,NULL,NULL,'2024-08-13 04:32:33','2024-08-13 04:32:33'),
(7,1,'page',1,NULL,NULL,NULL,'{\"facebook\":{\"title\":null,\"desc\":null,\"image\":null},\"twitter\":{\"title\":null,\"desc\":null,\"image\":null}}',1,NULL,NULL,NULL,'2024-08-13 04:33:06','2024-08-13 04:33:06'),
(8,2,'page_translation',1,NULL,NULL,NULL,'{\"facebook\":{\"title\":null,\"desc\":null,\"image\":null},\"twitter\":{\"title\":null,\"desc\":null,\"image\":null}}',1,NULL,NULL,NULL,'2024-08-13 04:33:06','2024-08-13 04:33:06');
/*!40000 ALTER TABLE `bravo_seo` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_service_translations`
--

DROP TABLE IF EXISTS `bravo_service_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_service_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` bigint(20) DEFAULT NULL,
  `locale` varchar(10) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_service_translations_origin_id_locale_unique` (`origin_id`,`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_service_translations`
--

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

--
-- Table structure for table `bravo_services`
--

DROP TABLE IF EXISTS `bravo_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_services` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
  `category_id` int(11) DEFAULT NULL,
  `location_id` int(11) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `map_lat` varchar(20) DEFAULT NULL,
  `map_lng` varchar(20) DEFAULT NULL,
  `is_featured` tinyint(4) DEFAULT NULL,
  `star_rate` tinyint(4) DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `sale_price` decimal(12,2) DEFAULT NULL,
  `min_people` int(11) DEFAULT NULL,
  `max_people` int(11) DEFAULT NULL,
  `max_guests` int(11) DEFAULT NULL,
  `review_score` int(11) DEFAULT NULL,
  `min_day_before_booking` int(11) DEFAULT NULL,
  `min_day_stays` int(11) DEFAULT NULL,
  `object_id` int(11) DEFAULT NULL,
  `object_model` varchar(255) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_services_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_services`
--

LOCK TABLES `bravo_services` WRITE;
/*!40000 ALTER TABLE `bravo_services` DISABLE KEYS */;
INSERT INTO `bravo_services` (`id`, `title`, `slug`, `category_id`, `location_id`, `address`, `map_lat`, `map_lng`, `is_featured`, `star_rate`, `price`, `sale_price`, `min_people`, `max_people`, `max_guests`, `review_score`, `min_day_before_booking`, `min_day_stays`, `object_id`, `object_model`, `status`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `author_id`) VALUES (1,'Prof. Rex Volkman I','prof-rex-volkman-i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,1,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(2,'Ms. Mya Bosco','ms-mya-bosco',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,2,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(3,'Mr. Merle Ortiz','mr-merle-ortiz',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,3,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(4,'Dr. Macy Stokes','dr-macy-stokes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,4,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(5,'Gunner Mayer','gunner-mayer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,5,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(6,'Furman Little','furman-little',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,6,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(7,'Tiffany Prosacco','tiffany-prosacco',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,7,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(8,'Unique Moore Jr.','unique-moore-jr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,8,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(9,'Dr. Rowland McCullough MD','dr-rowland-mccullough-md',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,9,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(10,'Dr. Jessie Johnston IV','dr-jessie-johnston-iv',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,10,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(11,'Dr. Jessie Feil','dr-jessie-feil',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,11,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(12,'Waldo Feil','waldo-feil',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,12,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(13,'Dr. Joey Thompson','dr-joey-thompson',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,13,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(14,'Heather Swaniawski','heather-swaniawski',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,14,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(15,'Ms. Ardith Kshlerin','ms-ardith-kshlerin',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,15,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(16,'Cielo Windler','cielo-windler',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,16,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(17,'Zoila O\'Hara','zoila-ohara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,17,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(18,'Delores Denesik','delores-denesik',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,18,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(19,'Ms. Kasey Koepp','ms-kasey-koepp',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,19,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(20,'Albina Willms Sr.','albina-willms-sr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,20,'flight','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',NULL),
(21,'The May Fair Hotel','the-may-fair-hotel',NULL,1,'Paris Cinemas Battery','19.277696','72.887009',0,4,550.00,NULL,NULL,NULL,NULL,5,NULL,NULL,11,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(22,'Dylan Hotel','dylan-hotel',NULL,2,'Regal Cinemas Battery','19.229727','72.984470',1,5,550.00,NULL,NULL,NULL,NULL,5,NULL,NULL,10,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(23,'Parian Holiday Villas','parian-holiday-villas',NULL,1,'Regal Cinemas Battery Park','19.161637','72.997510',1,5,550.00,NULL,NULL,NULL,NULL,4,NULL,NULL,9,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(24,'Stewart Hotel','stewart-hotel',NULL,5,'New York','19.080542','73.010551',0,5,900.00,NULL,NULL,NULL,NULL,5,NULL,NULL,8,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',4),
(25,'Crowne Plaza Hotel','crowne-plaza-hotel',NULL,2,'New York','19.001355','73.111444',0,5,900.00,NULL,NULL,NULL,NULL,5,NULL,NULL,7,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(26,'EnVision Hotel Boston','envision-hotel-boston',NULL,3,'New York','18.873011','72.975724',0,5,700.00,NULL,NULL,NULL,NULL,4,NULL,NULL,6,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(27,'Studio Allston Hotel','studio-allston-hotel',NULL,5,'New York','18.972786','72.819724',0,5,500.00,NULL,NULL,NULL,NULL,4,NULL,NULL,5,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(28,'Redac Gateway Hotel','redac-gateway-hotel',NULL,1,'Petit-Montrouge','19.031217','72.851982',0,5,500.00,NULL,NULL,NULL,NULL,4,NULL,NULL,4,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(29,'Castello Casole Hotel','castello-casole-hotel',NULL,1,'Petit-Montrouge','19.077946','72.838255',0,5,350.00,NULL,NULL,NULL,NULL,4,NULL,NULL,3,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(30,'Hotel WBF Hommachi','hotel-wbf-hommachi',NULL,1,'Porte de Vanves','19.110390','72.832764',0,5,350.00,NULL,NULL,NULL,NULL,4,NULL,NULL,2,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(31,'Hotel Stanford','hotel-stanford',NULL,1,'Arrondissement de Paris','19.148665','72.839670',0,5,300.00,NULL,NULL,NULL,NULL,5,NULL,NULL,1,'hotel','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(32,'STAY GREENWICH VILLAGE','stay-greenwich-village',NULL,1,'Porte de Vanves','51.514892','-0.176181',0,NULL,300.00,150.00,NULL,NULL,5,5,NULL,NULL,11,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(33,'LILY DALE VILLAGE','lily-dale-village',NULL,1,'Porte de Vanves','51.517883','-0.134314',0,NULL,250.00,0.00,NULL,NULL,7,5,NULL,NULL,10,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(34,'LUXURY SINGLE','luxury-single',NULL,1,'Porte de Vanves','51.569555','0.012563',1,NULL,400.00,350.00,NULL,NULL,6,5,NULL,NULL,9,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(35,'PARIS GREENWICH VILLA','paris-greenwich-villa',NULL,1,'Porte de Vanves','51.556749','-0.091124',0,NULL,500.00,0.00,NULL,NULL,9,5,NULL,NULL,8,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(36,'EAST VILLAGE','east-village',NULL,1,'Porte de Vanves','51.524292','-0.022489',0,NULL,300.00,260.00,NULL,NULL,6,5,NULL,NULL,7,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(37,'THE MEATPACKING SUITES','the-meatpacking-suites',NULL,1,'Porte de Vanves','51.475135','0.003592',0,NULL,320.00,0.00,NULL,NULL,10,4,NULL,NULL,6,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(38,'DUPLEX GREENWICH','duplex-greenwich',NULL,1,'Porte de Vanves','51.442192','-0.043778',1,NULL,220.00,0.00,NULL,NULL,10,4,NULL,NULL,5,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(39,'BEST OF WEST VILLAGE','best-of-west-village',NULL,4,'Porte de Vanves','51.427638','-0.170752',1,NULL,800.00,0.00,NULL,NULL,8,4,NULL,NULL,4,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(40,'BEAUTIFUL LOFT','beautiful-loft',NULL,3,'Porte de Vanves','51.461875','-0.211246',0,NULL,650.00,0.00,NULL,NULL,7,4,NULL,NULL,3,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(41,'LUXURY APARTMENT','luxury-apartment',NULL,3,'Porte de Vanves','51.519592','-0.226346',1,NULL,900.00,0.00,NULL,NULL,5,5,NULL,NULL,2,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(42,'LUXURY STUDIO','luxury-studio',NULL,2,'Arrondissement de Paris','51.528564','-0.203010',0,NULL,300.00,754.00,NULL,NULL,10,4,NULL,NULL,1,'space','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(43,'Vinfast Fadil Standard','vinfast-fadil-standard',NULL,1,'Arrondissement de Paris','21.053326','105.841475',1,NULL,400.00,0.00,NULL,NULL,NULL,5,NULL,NULL,13,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',4),
(44,'Vinfast Lux A2.0 Plus','vinfast-lux-a20-plus',NULL,3,'Arrondissement de Paris','21.051244','105.777988',0,NULL,350.00,0.00,NULL,NULL,NULL,4,NULL,NULL,12,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',5),
(45,'Vinfast Lux V8 (SUV)','vinfast-lux-v8-suv',NULL,8,'Arrondissement de Paris','21.020001','105.836670',0,NULL,250.00,0.00,NULL,NULL,NULL,4,NULL,NULL,11,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',5),
(46,'Toyota Prius Plus','toyota-prius-plus',NULL,7,'Arrondissement de Paris','21.025449','105.804412',1,NULL,199.00,0.00,NULL,NULL,NULL,4,NULL,NULL,10,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',5),
(47,'Honda Civic','honda-civic',NULL,6,'Arrondissement de Paris','21.047879','105.809731',1,NULL,450.00,0.00,NULL,NULL,NULL,5,NULL,NULL,9,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',6),
(48,'Vinfast Lux SA2.0 Plus','vinfast-lux-sa20-plus',NULL,1,'Arrondissement de Paris','21.017437','105.831179',1,NULL,600.00,0.00,NULL,NULL,NULL,4,NULL,NULL,8,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',6),
(49,'Mercedes Benz','mercedes-benz',NULL,1,'Arrondissement de Paris','21.025769','105.829635',1,NULL,200.00,0.00,NULL,NULL,NULL,5,NULL,NULL,7,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',5),
(50,'Vinfast Fadil Plus','vinfast-fadil-plus',NULL,1,'Arrondissement de Paris','21.018398','105.812820',0,NULL,400.00,0.00,NULL,NULL,NULL,4,NULL,NULL,6,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',6),
(51,'2019 Audi S3','2019-audi-s3',NULL,5,'Arrondissement de Paris','21.014873','105.794117',1,NULL,300.00,0.00,NULL,NULL,NULL,4,NULL,NULL,5,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',1),
(52,'2019 BMW M6 Gran Coupe','2019-bmw-m6-gran-coupe',NULL,1,'Arrondissement de Paris','21.020161','105.789655',1,NULL,300.00,0.00,NULL,NULL,NULL,4,NULL,NULL,4,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',1),
(53,'2019 Honda Clarity','2019-honda-clarity',NULL,3,'Arrondissement de Paris','21.031217','105.773698',1,NULL,300.00,0.00,NULL,NULL,NULL,5,NULL,NULL,3,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',1),
(54,'2019 Honda Clarity','2019-honda-clarity-1',NULL,1,'Arrondissement de Paris','21.039771','105.777203',0,NULL,300.00,0.00,NULL,NULL,NULL,5,NULL,NULL,2,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',1),
(55,'BMW-X6-facelift','bmw-x6-facelift',NULL,1,'Arrondissement de Paris','21.054831','105.796077',0,NULL,500.00,276.00,NULL,NULL,NULL,5,NULL,NULL,1,'car','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36',1),
(56,'Event of Washington, D.C. Highlights','event-of-washington-dc-highlights',NULL,7,'Francisco Parnassus Campus','37.782668','-122.425058',1,NULL,2100.00,1181.00,NULL,NULL,NULL,4,NULL,NULL,12,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(57,'New York – Discover America','new-york-discover-america',NULL,6,'New Jersey','40.035329','-74.417227',1,NULL,300.00,0.00,NULL,NULL,NULL,4,NULL,NULL,11,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(58,'Origami Crane Wedding Planners','origami-crane-wedding-planners',NULL,5,'Washington, DC, USA','34.049345','-118.248479',0,NULL,400.00,0.00,NULL,NULL,NULL,4,NULL,NULL,10,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(59,'Northern Lights Event Planners','northern-lights-event-planners',NULL,4,'United States','37.040023','-95.643144',1,NULL,800.00,600.00,NULL,NULL,NULL,4,NULL,NULL,9,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',4),
(60,'Pink Crescent Moon Events','pink-crescent-moon-events',NULL,3,'Trimmer Springs Rd, Sanger','36.822484','-119.365266',0,NULL,700.00,0.00,NULL,NULL,NULL,4,NULL,NULL,8,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',4),
(61,'Eastern Discovery','eastern-discovery',NULL,2,'Pier 36 New York','40.708581','-73.998817',0,NULL,2100.00,1682.00,NULL,NULL,NULL,5,NULL,NULL,7,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(62,'Spanish Moss Event Design','spanish-moss-event-design',NULL,2,'Prince St Station','40.720161','-74.009628',1,NULL,600.00,0.00,NULL,NULL,NULL,5,NULL,NULL,6,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(63,'Southwest States (Ex Los Angeles) ','southwest-states-ex-los-angeles',NULL,2,'Regal Cinemas Battery Park 11','40.714578','-73.983888',0,NULL,1900.00,1094.00,NULL,NULL,NULL,4,NULL,NULL,5,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(64,'Aspen Glade Weddings & Events','aspen-glade-weddings-events',NULL,2,'New York','40.707891','-74.008825',1,NULL,850.00,0.00,NULL,NULL,NULL,4,NULL,NULL,4,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(65,'Bamboo Grove Event Planning','bamboo-grove-event-planning',NULL,1,'Petit-Montrouge','48.884900','2.346377',1,NULL,1500.00,794.00,NULL,NULL,NULL,5,NULL,NULL,3,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',4),
(66,'Painted Desert Event Designs','painted-desert-event-designs',NULL,1,'Porte de Vanves','48.853917','2.307199',1,NULL,900.00,742.00,NULL,NULL,NULL,5,NULL,NULL,2,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(67,'Andante & Allegro Event Design','andante-allegro-event-design',NULL,1,'Arrondissement de Paris','48.852754','2.339155',0,NULL,2000.00,0.00,NULL,NULL,NULL,5,NULL,NULL,1,'event','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(68,'River Cruise Tour on the Seine','river-cruise-tour-on-the-seine',2,1,'Nevada, US','36.401066','-88.312292',0,NULL,2100.00,1785.00,1,17,NULL,5,NULL,NULL,16,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(69,'Cannes and Antibes Night Tour','cannes-and-antibes-night-tour',3,1,'UCSF Helen Diller Family','36.201066','-88.112292',0,NULL,2100.00,1399.00,1,13,NULL,5,NULL,NULL,15,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',4),
(70,'San Francisco Express Never Ceases','san-francisco-express-never-ceases',4,7,'Comprehensive Cancer Center','37.757522','-122.447984',0,NULL,2100.00,736.00,1,20,NULL,4,NULL,NULL,14,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(71,'Hollywood Sign Small Group Tour in Luxury Van','hollywood-sign-small-group-tour-in-luxury-van',1,8,'Virginia','37.445688','-78.673668',0,NULL,2100.00,1246.00,1,18,NULL,5,NULL,NULL,13,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',4),
(72,'Segway Tour of Washington, D.C. Highlights','segway-tour-of-washington-dc-highlights',4,7,'Francisco Parnassus Campus','37.782668','-122.425058',0,NULL,2100.00,1203.00,1,16,NULL,5,NULL,NULL,12,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(73,'Trip of New York – Discover America','trip-of-new-york-discover-america',2,6,'New Jersey','40.035329','-74.417227',0,NULL,2100.00,890.00,1,10,NULL,5,NULL,NULL,11,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(74,'Giverny and Versailles Small Group Day Trip','giverny-and-versailles-small-group-day-trip',2,5,'Washington, DC, USA','34.049345','-118.248479',0,NULL,2100.00,217.00,1,16,NULL,5,NULL,NULL,10,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(75,'Tastes and Sounds of the South 2019','tastes-and-sounds-of-the-south-2019',4,4,'United States','37.040023','-95.643144',0,NULL,2100.00,1395.00,1,14,NULL,5,NULL,NULL,9,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',4),
(76,'Pure Luxe in Punta Mita','pure-luxe-in-punta-mita',3,3,'Trimmer Springs Rd, Sanger','36.822484','-119.365266',0,NULL,2100.00,716.00,1,18,NULL,5,NULL,NULL,8,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(77,'Eastern Discovery','eastern-discovery-1',1,2,'Pier 36 New York','40.708581','-73.998817',0,NULL,2100.00,413.00,1,18,NULL,5,NULL,NULL,7,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(78,'Eastern Discovery (Start New Orleans)','eastern-discovery-start-new-orleans',1,2,'Prince St Station','40.720161','-74.009628',1,NULL,2100.00,1323.00,1,10,NULL,5,NULL,NULL,6,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',6),
(79,'Southwest States (Ex Los Angeles) ','southwest-states-ex-los-angeles-1',1,2,'Regal Cinemas Battery Park 11','40.714578','-73.983888',0,NULL,1900.00,751.00,1,11,NULL,5,NULL,NULL,5,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',5),
(80,'Paris Vacation Travel ','paris-vacation-travel',3,2,'New York','40.707891','-74.008825',1,NULL,850.00,337.00,1,13,NULL,5,NULL,NULL,4,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(81,'Los Angeles to San Francisco Express ','los-angeles-to-san-francisco-express',2,1,'Petit-Montrouge','48.884900','2.346377',1,NULL,1500.00,722.00,1,19,NULL,4,NULL,NULL,3,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',4),
(82,'New York: Museum of Modern Art','new-york-museum-of-modern-art',4,1,'Porte de Vanves','48.853917','2.307199',1,NULL,900.00,484.00,1,18,NULL,4,NULL,NULL,2,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(83,'American Parks Trail end Rapid City','american-parks-trail-end-rapid-city',3,1,'Arrondissement de Paris','48.852754','2.339155',0,NULL,2000.00,268.00,1,20,NULL,5,NULL,NULL,1,'tour','publish',NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:37',1),
(84,'My Way 100','my-way-100',NULL,1,'Arrondissement de Paris','21.053326','105.841475',0,NULL,150.00,NULL,NULL,NULL,NULL,4,NULL,NULL,13,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',4),
(85,'Ohana 3X','ohana-3x',NULL,3,'Arrondissement de Paris','21.051244','105.777988',1,NULL,80.00,NULL,NULL,NULL,NULL,5,NULL,NULL,12,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',4),
(86,'Freedom M2','freedom-m2',NULL,8,'Arrondissement de Paris','21.020001','105.836670',0,NULL,50.00,NULL,NULL,NULL,NULL,4,NULL,NULL,11,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',4),
(87,'Endless Summer W-10','endless-summer-w-10',NULL,7,'Arrondissement de Paris','21.025449','105.804412',1,NULL,230.00,NULL,NULL,NULL,NULL,5,NULL,NULL,10,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',6),
(88,'Destiny 6','destiny-6',NULL,6,'Arrondissement de Paris','21.047879','105.809731',0,NULL,180.00,NULL,NULL,NULL,NULL,5,NULL,NULL,9,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',6),
(89,'Carpe Diem LA','carpe-diem-la',NULL,1,'Arrondissement de Paris','21.017437','105.831179',0,NULL,200.00,NULL,NULL,NULL,NULL,4,NULL,NULL,8,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',4),
(90,'Blue Moon YC-300','blue-moon-yc-300',NULL,1,'Arrondissement de Paris','21.025769','105.829635',1,NULL,130.00,NULL,NULL,NULL,NULL,5,NULL,NULL,7,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',4),
(91,'Blue Dream TC-20','blue-dream-tc-20',NULL,1,'Arrondissement de Paris','21.018398','105.812820',1,NULL,130.00,NULL,NULL,NULL,NULL,4,NULL,NULL,6,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',4),
(92,'Andiamo MX-3','andiamo-mx-3',NULL,5,'Arrondissement de Paris','21.014873','105.794117',1,NULL,250.00,NULL,NULL,NULL,NULL,5,NULL,NULL,5,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',1),
(93,'BOAT 1992 ALISON','boat-1992-alison',NULL,1,'Arrondissement de Paris','21.020161','105.789655',0,NULL,50.00,NULL,NULL,NULL,NULL,5,NULL,NULL,4,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',1),
(94,'Blue Moon Cruising','blue-moon-cruising',NULL,3,'Arrondissement de Paris','21.031217','105.773698',0,NULL,200.00,NULL,NULL,NULL,NULL,5,NULL,NULL,3,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',1),
(95,'Summer Breeze','summer-breeze',NULL,1,'Arrondissement de Paris','21.039771','105.777203',0,NULL,150.00,NULL,NULL,NULL,NULL,4,NULL,NULL,2,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',1),
(96,'Cruising Yacht','cruising-yacht',NULL,1,'Arrondissement de Paris','21.054831','105.796077',0,NULL,100.00,NULL,NULL,NULL,NULL,5,NULL,NULL,1,'boat','publish',NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37',1),
(97,'TEST TOUR','test-tour',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,4,NULL,NULL,NULL,NULL,17,'tour','publish',1,NULL,NULL,'2023-10-31 09:16:40','2023-10-31 09:16:40',NULL),
(98,'Air Express','air-express',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21,'flight','publish',1,1,NULL,'2024-03-22 06:14:09','2024-03-23 14:51:10',NULL);
/*!40000 ALTER TABLE `bravo_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_space_dates`
--

DROP TABLE IF EXISTS `bravo_space_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_space_dates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `target_id` bigint(20) DEFAULT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `max_guests` tinyint(4) DEFAULT NULL,
  `active` tinyint(4) DEFAULT 0,
  `note_to_customer` text DEFAULT NULL,
  `note_to_admin` text DEFAULT NULL,
  `is_instant` tinyint(4) DEFAULT 0,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_space_dates`
--

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

--
-- Table structure for table `bravo_space_term`
--

DROP TABLE IF EXISTS `bravo_space_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_space_term` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` int(11) DEFAULT NULL,
  `target_id` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=157 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_space_term`
--

LOCK TABLES `bravo_space_term` WRITE;
/*!40000 ALTER TABLE `bravo_space_term` DISABLE KEYS */;
INSERT INTO `bravo_space_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,15,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(2,16,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(3,17,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(4,18,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(5,19,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(6,20,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(7,21,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(8,22,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(9,23,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(10,24,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(11,25,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(12,27,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(13,28,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(14,29,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(15,30,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(16,31,1,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(17,15,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(18,16,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(19,17,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(20,18,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(21,19,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(22,20,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(23,22,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(24,23,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(25,24,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(26,25,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(27,26,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(28,27,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(29,28,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(30,29,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(31,30,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(32,31,2,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(33,15,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(34,16,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(35,17,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(36,18,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(37,19,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(38,21,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(39,22,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(40,23,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(41,24,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(42,25,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(43,26,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(44,27,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(45,29,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(46,30,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(47,31,3,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(48,15,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(49,16,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(50,17,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(51,19,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(52,20,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(53,21,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(54,22,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(55,24,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(56,25,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(57,26,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(58,28,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(59,30,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(60,31,4,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(61,15,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(62,16,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(63,17,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(64,18,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(65,20,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(66,21,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(67,22,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(68,24,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(69,25,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(70,26,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(71,27,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(72,28,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(73,31,5,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(74,15,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(75,16,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(76,17,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(77,18,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(78,19,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(79,21,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(80,22,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(81,23,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(82,25,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(83,26,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(84,27,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(85,28,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(86,29,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(87,30,6,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(88,15,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(89,16,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(90,17,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(91,18,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(92,19,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(93,20,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(94,22,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(95,23,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(96,24,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(97,25,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(98,26,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(99,27,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(100,28,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(101,29,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(102,30,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(103,31,7,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(104,15,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(105,16,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(106,18,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(107,19,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(108,20,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(109,21,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(110,22,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(111,23,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(112,24,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(113,25,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(114,26,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(115,27,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(116,28,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(117,29,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(118,30,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(119,31,8,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(120,15,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(121,17,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(122,19,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(123,21,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(124,22,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(125,23,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(126,24,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(127,25,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(128,26,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(129,27,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(130,28,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(131,29,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(132,30,9,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(133,15,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(134,16,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(135,17,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(136,21,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(137,22,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(138,23,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(139,26,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(140,27,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(141,28,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(142,29,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(143,30,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(144,31,10,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(145,15,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(146,16,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(147,17,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(148,18,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(149,20,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(150,22,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(151,23,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(152,24,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(153,25,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(154,27,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(155,30,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27'),
(156,31,11,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27');
/*!40000 ALTER TABLE `bravo_space_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_space_translations`
--

DROP TABLE IF EXISTS `bravo_space_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_space_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `surrounding` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_space_translations_locale_index` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_space_translations`
--

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

--
-- Table structure for table `bravo_spaces`
--

DROP TABLE IF EXISTS `bravo_spaces`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_spaces` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
  `content` text DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `banner_image_id` int(11) DEFAULT NULL,
  `location_id` int(11) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `map_lat` varchar(20) DEFAULT NULL,
  `map_lng` varchar(20) DEFAULT NULL,
  `map_zoom` int(11) DEFAULT NULL,
  `is_featured` tinyint(4) DEFAULT NULL,
  `gallery` varchar(255) DEFAULT NULL,
  `video` varchar(255) DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `sale_price` decimal(12,2) DEFAULT NULL,
  `is_instant` tinyint(4) DEFAULT 0,
  `allow_children` tinyint(4) DEFAULT 0,
  `allow_infant` tinyint(4) DEFAULT 0,
  `max_guests` int(11) DEFAULT NULL,
  `bed` int(11) DEFAULT NULL,
  `bathroom` int(11) DEFAULT NULL,
  `square` int(11) DEFAULT NULL,
  `enable_extra_price` tinyint(4) DEFAULT NULL,
  `extra_price` text DEFAULT NULL,
  `discount_by_days` text DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `default_state` tinyint(4) DEFAULT 1,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `review_score` decimal(2,1) DEFAULT NULL,
  `ical_import_url` varchar(191) DEFAULT NULL,
  `enable_service_fee` tinyint(4) DEFAULT NULL,
  `service_fee` text DEFAULT NULL,
  `surrounding` text DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `min_day_before_booking` int(11) DEFAULT NULL,
  `min_day_stays` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_spaces_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_spaces`
--

LOCK TABLES `bravo_spaces` WRITE;
/*!40000 ALTER TABLE `bravo_spaces` DISABLE KEYS */;
INSERT INTO `bravo_spaces` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `faqs`, `price`, `sale_price`, `is_instant`, `allow_children`, `allow_infant`, `max_guests`, `bed`, `bathroom`, `square`, `enable_extra_price`, `extra_price`, `discount_by_days`, `status`, `default_state`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `review_score`, `ical_import_url`, `enable_service_fee`, `service_fee`, `surrounding`, `author_id`, `min_day_before_booking`, `min_day_stays`) VALUES (1,'LUXURY STUDIO','luxury-studio','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',63,84,2,'Arrondissement de Paris','51.528564','-0.203010',12,0,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',300.00,754.00,1,0,0,10,10,8,155,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',4.0,NULL,NULL,NULL,NULL,1,NULL,NULL),
(2,'LUXURY APARTMENT','luxury-apartment','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',64,83,3,'Porte de Vanves','51.519592','-0.226346',12,1,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',900.00,0.00,1,0,0,5,7,2,111,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',5.0,NULL,NULL,NULL,NULL,1,NULL,NULL),
(3,'BEAUTIFUL LOFT','beautiful-loft','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',65,85,3,'Porte de Vanves','51.461875','-0.211246',12,0,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',650.00,0.00,1,0,0,7,4,7,150,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',4.3,NULL,NULL,NULL,NULL,6,NULL,NULL),
(4,'BEST OF WEST VILLAGE','best-of-west-village','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',66,84,4,'Porte de Vanves','51.427638','-0.170752',12,1,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',800.00,0.00,1,0,0,8,6,5,148,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',4.3,NULL,NULL,NULL,NULL,5,NULL,NULL),
(5,'DUPLEX GREENWICH','duplex-greenwich','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',67,84,1,'Porte de Vanves','51.442192','-0.043778',12,1,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',220.00,0.00,1,0,0,10,10,5,181,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',4.0,NULL,NULL,NULL,NULL,6,NULL,NULL),
(6,'THE MEATPACKING SUITES','the-meatpacking-suites','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',68,84,1,'Porte de Vanves','51.475135','0.003592',12,0,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',320.00,0.00,1,0,0,10,4,2,138,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',4.0,NULL,NULL,NULL,NULL,5,NULL,NULL),
(7,'EAST VILLAGE','east-village','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',69,84,1,'Porte de Vanves','51.524292','-0.022489',12,0,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',300.00,260.00,0,0,0,6,5,8,153,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',4.7,NULL,NULL,NULL,NULL,6,NULL,NULL),
(8,'PARIS GREENWICH VILLA','paris-greenwich-villa','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',70,85,1,'Porte de Vanves','51.556749','-0.091124',12,0,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',500.00,0.00,0,0,0,9,4,4,107,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',5.0,NULL,NULL,NULL,NULL,5,NULL,NULL),
(9,'LUXURY SINGLE','luxury-single','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',71,84,1,'Porte de Vanves','51.569555','0.012563',12,1,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',400.00,350.00,0,0,0,6,7,9,117,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',4.8,NULL,NULL,NULL,NULL,6,NULL,NULL),
(10,'LILY DALE VILLAGE','lily-dale-village','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',72,83,1,'Porte de Vanves','51.517883','-0.134314',12,0,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',250.00,0.00,1,0,0,7,10,5,118,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',4.5,NULL,NULL,NULL,NULL,1,NULL,NULL),
(11,'STAY GREENWICH VILLAGE','stay-greenwich-village','<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',73,84,1,'Porte de Vanves','51.514892','-0.176181',12,0,'76,77,78,79,80,81,82','https://www.youtube.com/watch?v=UfEiKK-iX70','[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]',300.00,150.00,1,0,0,5,8,7,124,1,'[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,'publish',1,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:27',5.0,NULL,NULL,NULL,NULL,6,NULL,NULL);
/*!40000 ALTER TABLE `bravo_spaces` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_terms`
--

DROP TABLE IF EXISTS `bravo_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_terms` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `attr_id` int(11) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `icon` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_terms`
--

LOCK TABLES `bravo_terms` WRITE;
/*!40000 ALTER TABLE `bravo_terms` DISABLE KEYS */;
INSERT INTO `bravo_terms` (`id`, `name`, `content`, `attr_id`, `slug`, `create_user`, `update_user`, `origin_id`, `lang`, `created_at`, `updated_at`, `deleted_at`, `image_id`, `icon`) VALUES (1,'Cultural',NULL,1,'cultural',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(2,'Nature & Adventure',NULL,1,'nature-adventure',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(3,'Marine',NULL,1,'marine',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(4,'Independent',NULL,1,'independent',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(5,'Activities',NULL,1,'activities',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(6,'Festival & Events',NULL,1,'festival-events',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(7,'Special Interest',NULL,1,'special-interest',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(8,'Wifi',NULL,2,'wifi',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(9,'Gymnasium',NULL,2,'gymnasium',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(10,'Mountain Bike',NULL,2,'mountain-bike',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(11,'Satellite Office',NULL,2,'satellite-office',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(12,'Staff Lounge',NULL,2,'staff-lounge',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(13,'Golf Cages',NULL,2,'golf-cages',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(14,'Aerobics Room',NULL,2,'aerobics-room',NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',NULL,NULL,NULL),
(15,'Auditorium',NULL,3,'auditorium',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(16,'Bar',NULL,3,'bar',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(17,'Cafe',NULL,3,'cafe',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(18,'Ballroom',NULL,3,'ballroom',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(19,'Dance Studio',NULL,3,'dance-studio',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(20,'Office',NULL,3,'office',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(21,'Party Hall',NULL,3,'party-hall',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(22,'Recording Studio',NULL,3,'recording-studio',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(23,'Yoga Studio',NULL,3,'yoga-studio',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(24,'Villa',NULL,3,'villa',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(25,'Warehouse',NULL,3,'warehouse',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(26,'Air Conditioning',NULL,4,'air-conditioning',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,86,NULL),
(27,'Breakfast',NULL,4,'breakfast',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,87,NULL),
(28,'Kitchen',NULL,4,'kitchen',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,88,NULL),
(29,'Parking',NULL,4,'parking',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,89,NULL),
(30,'Pool',NULL,4,'pool',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,90,NULL),
(31,'Wi-Fi Internet',NULL,4,'wi-fi-internet',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,91,NULL),
(32,'Apartments',NULL,5,'apartments',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(33,'Hotels',NULL,5,'hotels',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(34,'Homestays',NULL,5,'homestays',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(35,'Villas',NULL,5,'villas',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(36,'Boats',NULL,5,'boats',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(37,'Motels',NULL,5,'motels',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(38,'Resorts',NULL,5,'resorts',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(39,'Lodges',NULL,5,'lodges',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(40,'Holiday homes',NULL,5,'holiday-homes',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(41,'Cruises',NULL,5,'cruises',NULL,NULL,NULL,NULL,'2023-03-23 08:49:27','2023-03-23 08:49:27',NULL,NULL,NULL),
(42,'Wake-up call',NULL,6,'wake-up-call',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-wall-clock'),
(43,'Car hire',NULL,6,'car-hire',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-car-alt-3'),
(44,'Bicycle hire',NULL,6,'bicycle-hire',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-bicycle-alt-2'),
(45,'Flat Tv',NULL,6,'flat-tv',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-imac'),
(46,'Laundry and dry cleaning',NULL,6,'laundry-and-dry-cleaning',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-recycle-alt'),
(47,'Internet – Wifi',NULL,6,'internet-wifi',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-wifi-alt'),
(48,'Coffee and tea',NULL,6,'coffee-and-tea',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-tea'),
(49,'Havana Lobby bar',NULL,7,'havana-lobby-bar',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL),
(50,'Fiesta Restaurant',NULL,7,'fiesta-restaurant',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL),
(51,'Hotel transport services',NULL,7,'hotel-transport-services',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL),
(52,'Free luggage deposit',NULL,7,'free-luggage-deposit',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL),
(53,'Laundry Services',NULL,7,'laundry-services',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL),
(54,'Pets welcome',NULL,7,'pets-welcome',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL),
(55,'Tickets',NULL,7,'tickets',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,NULL),
(56,'Wake-up call',NULL,8,'wake-up-call-1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-wall-clock'),
(57,'Flat Tv',NULL,8,'flat-tv-1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-imac'),
(58,'Laundry and dry cleaning',NULL,8,'laundry-and-dry-cleaning-1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-recycle-alt'),
(59,'Internet – Wifi',NULL,8,'internet-wifi-1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-wifi-alt'),
(60,'Coffee and tea',NULL,8,'coffee-and-tea-1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:28','2023-03-23 08:49:28',NULL,NULL,'icofont-tea'),
(61,'Convertibles',NULL,9,'convertibles',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,124,NULL),
(62,'Coupes',NULL,9,'coupes',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,125,NULL),
(63,'Hatchbacks',NULL,9,'hatchbacks',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,126,NULL),
(64,'Minivans',NULL,9,'minivans',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,127,NULL),
(65,'Sedan',NULL,9,'sedan',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,128,NULL),
(66,'SUVs',NULL,9,'suvs',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,129,NULL),
(67,'Trucks',NULL,9,'trucks',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,130,NULL),
(68,'Wagons',NULL,9,'wagons',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,131,NULL),
(69,'Airbag',NULL,10,'airbag',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,137,NULL),
(70,'FM Radio',NULL,10,'fm-radio',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,138,NULL),
(71,'Power Windows',NULL,10,'power-windows',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,142,NULL),
(72,'Sensor',NULL,10,'sensor',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,139,NULL),
(73,'Speed Km',NULL,10,'speed-km',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,140,NULL),
(74,'Steering Wheel',NULL,10,'steering-wheel',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,141,NULL),
(75,'Field Day',NULL,11,'field-day',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL),
(76,'Glastonbury',NULL,11,'glastonbury',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL),
(77,'Green Man',NULL,11,'green-man',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL),
(78,'Latitude',NULL,11,'latitude',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL),
(79,'Boomtown',NULL,11,'boomtown',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL),
(80,'Wilderness',NULL,11,'wilderness',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL),
(81,'Exit Festival',NULL,11,'exit-festival',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL),
(82,'Primavera Sound',NULL,11,'primavera-sound',NULL,NULL,NULL,NULL,'2023-03-23 08:49:29','2023-03-23 08:49:29',NULL,NULL,NULL),
(83,'Business',NULL,12,'business',NULL,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL,NULL),
(84,'First Class',NULL,12,'first-class',NULL,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL,NULL),
(85,'Economy',NULL,12,'economy',NULL,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL,NULL),
(86,'Premium Economy',NULL,12,'premium-economy',NULL,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL,NULL),
(87,'Inflight Dining',NULL,13,'inflight-dining',NULL,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL,NULL),
(88,'Music',NULL,13,'music',NULL,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL,NULL),
(89,'Sky Shopping',NULL,13,'sky-shopping',NULL,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL,NULL),
(90,'Seats & Cabin',NULL,13,'seats-cabin',NULL,NULL,NULL,NULL,'2023-03-23 08:49:30','2023-03-23 08:49:30',NULL,NULL,NULL),
(91,'Airboat',NULL,14,'airboat',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(92,'Cabin cruiser',NULL,14,'cabin-cruiser',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(93,'Cruise ship',NULL,14,'cruise-ship',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(94,'Express cruiser',NULL,14,'express-cruiser',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(95,'Electric boat',NULL,14,'electric-boat',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(96,'Ferry',NULL,14,'ferry',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(97,'Inflatable boat',NULL,14,'inflatable-boat',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(98,'Jetboat',NULL,14,'jetboat',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(99,'Events and Meetings',NULL,15,'events-and-meetings',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(100,'Scuba Gear',NULL,15,'scuba-gear',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(101,'Hot Tub/Jacuzzi on Deck',NULL,15,'hot-tubjacuzzi-on-deck',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(102,'Sport Fishing',NULL,15,'sport-fishing',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(103,'Speciality Classic Yacht',NULL,15,'speciality-classic-yacht',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(104,'Gulet',NULL,15,'gulet',NULL,NULL,NULL,NULL,'2023-03-23 08:49:31','2023-03-23 08:49:31',NULL,NULL,NULL),
(105,'Students Fare',NULL,16,'non-stop',1,1,NULL,NULL,'2024-03-22 06:10:59','2024-03-23 06:27:28',NULL,NULL,NULL),
(106,'Armed Forces',NULL,16,'1-stop',1,1,NULL,NULL,'2024-03-22 06:11:08','2024-03-23 06:23:42',NULL,NULL,NULL),
(107,'Regular',NULL,16,'2-stop',1,1,NULL,NULL,'2024-03-22 06:11:16','2024-03-23 06:22:02',NULL,NULL,NULL);
/*!40000 ALTER TABLE `bravo_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_terms_translations`
--

DROP TABLE IF EXISTS `bravo_terms_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_terms_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` bigint(20) DEFAULT NULL,
  `locale` varchar(10) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_terms_translations_origin_id_locale_unique` (`origin_id`,`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_terms_translations`
--

LOCK TABLES `bravo_terms_translations` WRITE;
/*!40000 ALTER TABLE `bravo_terms_translations` DISABLE KEYS */;
INSERT INTO `bravo_terms_translations` (`id`, `origin_id`, `locale`, `name`, `content`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,105,'en','Students Fare',NULL,1,1,'2024-03-22 06:10:59','2024-03-23 06:27:28'),
(2,106,'en','Armed Forces',NULL,1,1,'2024-03-22 06:11:08','2024-03-23 06:23:42'),
(3,107,'en','Regular',NULL,1,1,'2024-03-22 06:11:16','2024-03-23 06:22:02');
/*!40000 ALTER TABLE `bravo_terms_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_tour_category`
--

DROP TABLE IF EXISTS `bravo_tour_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_tour_category` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `_lft` int(10) unsigned NOT NULL DEFAULT 0,
  `_rgt` int(10) unsigned NOT NULL DEFAULT 0,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_tour_category__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_tour_category`
--

LOCK TABLES `bravo_tour_category` WRITE;
/*!40000 ALTER TABLE `bravo_tour_category` DISABLE KEYS */;
INSERT INTO `bravo_tour_category` (`id`, `name`, `content`, `slug`, `status`, `_lft`, `_rgt`, `parent_id`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1,'City trips','','city-trips','publish',1,2,NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(2,'Ecotourism','','ecotourism','publish',3,4,NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(3,'Escorted tour','','escorted-tour','publish',5,6,NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(4,'Ligula','','ligula','publish',7,8,NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25');
/*!40000 ALTER TABLE `bravo_tour_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_tour_category_translations`
--

DROP TABLE IF EXISTS `bravo_tour_category_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_tour_category_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` bigint(20) DEFAULT NULL,
  `locale` varchar(10) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_tour_category_translations_origin_id_locale_unique` (`origin_id`,`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_tour_category_translations`
--

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

--
-- Table structure for table `bravo_tour_dates`
--

DROP TABLE IF EXISTS `bravo_tour_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_tour_dates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `target_id` bigint(20) DEFAULT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `person_types` text DEFAULT NULL,
  `max_guests` tinyint(4) DEFAULT NULL,
  `active` tinyint(4) DEFAULT 0,
  `note_to_customer` text DEFAULT NULL,
  `note_to_admin` text DEFAULT NULL,
  `is_instant` tinyint(4) DEFAULT 0,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_tour_dates`
--

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

--
-- Table structure for table `bravo_tour_meta`
--

DROP TABLE IF EXISTS `bravo_tour_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_tour_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tour_id` int(11) DEFAULT NULL,
  `enable_person_types` tinyint(4) DEFAULT NULL,
  `person_types` text DEFAULT NULL,
  `enable_extra_price` tinyint(4) DEFAULT NULL,
  `extra_price` text DEFAULT NULL,
  `discount_by_people` text DEFAULT NULL,
  `enable_open_hours` tinyint(4) DEFAULT NULL,
  `open_hours` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_tour_meta`
--

LOCK TABLES `bravo_tour_meta` WRITE;
/*!40000 ALTER TABLE `bravo_tour_meta` DISABLE KEYS */;
INSERT INTO `bravo_tour_meta` (`id`, `tour_id`, `enable_person_types`, `person_types`, `enable_extra_price`, `extra_price`, `discount_by_people`, `enable_open_hours`, `open_hours`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,1,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(2,2,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(3,3,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(4,4,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(5,5,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(6,6,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(7,7,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(8,8,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(9,9,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(10,10,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(11,11,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(12,12,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(13,13,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(14,14,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(15,15,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(16,16,1,'[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]',1,'[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(17,17,NULL,NULL,NULL,NULL,NULL,NULL,'{\"1\":{\"from\":\"00:00\",\"to\":\"00:00\"},\"2\":{\"from\":\"00:00\",\"to\":\"00:00\"},\"3\":{\"from\":\"00:00\",\"to\":\"00:00\"},\"4\":{\"from\":\"00:00\",\"to\":\"00:00\"},\"5\":{\"from\":\"00:00\",\"to\":\"00:00\"},\"6\":{\"from\":\"00:00\",\"to\":\"00:00\"},\"7\":{\"from\":\"00:00\",\"to\":\"00:00\"}}',1,NULL,'2023-10-31 09:16:40','2023-10-31 09:16:40');
/*!40000 ALTER TABLE `bravo_tour_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_tour_term`
--

DROP TABLE IF EXISTS `bravo_tour_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_tour_term` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` int(11) DEFAULT NULL,
  `tour_id` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=148 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_tour_term`
--

LOCK TABLES `bravo_tour_term` WRITE;
/*!40000 ALTER TABLE `bravo_tour_term` DISABLE KEYS */;
INSERT INTO `bravo_tour_term` (`id`, `term_id`, `tour_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,1,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(2,2,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(3,3,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(4,4,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(5,5,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(6,7,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(7,2,2,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(8,5,2,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(9,6,2,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(10,7,2,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(11,2,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(12,3,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(13,4,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(14,5,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(15,6,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(16,1,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(17,2,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(18,4,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(19,6,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(20,7,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(21,1,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(22,2,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(23,3,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(24,4,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(25,5,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(26,6,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(27,7,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(28,3,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(29,4,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(30,5,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(31,6,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(32,7,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(33,1,7,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(34,3,7,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(35,1,8,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(36,2,8,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(37,4,8,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(38,5,8,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(39,7,8,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(40,2,9,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(41,4,9,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(42,7,9,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(43,1,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(44,2,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(45,3,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(46,4,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(47,5,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(48,6,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(49,7,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(50,1,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(51,2,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(52,3,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(53,4,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(54,6,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(55,7,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(56,2,12,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(57,5,12,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(58,7,12,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(59,1,13,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(60,2,13,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(61,4,13,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(62,5,13,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(63,6,13,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(64,7,13,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(65,3,14,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(66,4,14,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(67,5,14,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(68,6,14,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(69,7,14,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(70,3,15,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(71,5,15,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(72,6,15,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(73,7,15,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(74,1,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(75,2,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(76,3,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(77,6,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(78,8,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(79,11,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(80,12,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(81,14,1,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(82,9,2,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(83,10,2,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(84,11,2,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(85,12,2,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(86,13,2,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(87,8,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(88,9,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(89,11,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(90,12,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(91,13,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(92,14,3,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(93,8,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(94,9,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(95,10,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(96,11,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(97,12,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(98,14,4,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(99,9,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(100,10,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(101,11,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(102,12,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(103,13,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(104,14,5,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(105,9,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(106,10,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(107,12,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(108,13,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(109,14,6,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(110,8,7,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(111,11,7,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(112,13,7,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(113,14,7,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(114,8,8,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(115,11,8,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(116,13,8,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(117,14,8,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(118,8,9,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(119,9,9,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(120,13,9,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(121,8,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(122,10,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(123,11,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(124,13,10,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(125,8,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(126,9,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(127,10,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(128,11,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(129,13,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(130,14,11,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(131,9,12,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(132,11,12,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(133,14,12,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(134,9,13,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(135,14,13,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(136,11,14,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(137,14,14,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(138,8,15,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(139,11,15,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(140,13,15,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(141,14,15,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(142,8,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(143,10,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(144,11,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(145,12,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(146,13,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26'),
(147,14,16,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26');
/*!40000 ALTER TABLE `bravo_tour_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_tour_translations`
--

DROP TABLE IF EXISTS `bravo_tour_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_tour_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` bigint(20) DEFAULT NULL,
  `locale` varchar(10) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
  `content` text DEFAULT NULL,
  `short_desc` text DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `include` text DEFAULT NULL,
  `exclude` text DEFAULT NULL,
  `itinerary` text DEFAULT NULL,
  `surrounding` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bravo_tour_translations_origin_id_locale_unique` (`origin_id`,`locale`),
  KEY `bravo_tour_translations_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_tour_translations`
--

LOCK TABLES `bravo_tour_translations` WRITE;
/*!40000 ALTER TABLE `bravo_tour_translations` DISABLE KEYS */;
INSERT INTO `bravo_tour_translations` (`id`, `origin_id`, `locale`, `title`, `slug`, `content`, `short_desc`, `address`, `faqs`, `create_user`, `update_user`, `created_at`, `updated_at`, `include`, `exclude`, `itinerary`, `surrounding`) VALUES (1,17,'en','TEST TOUR','','<p>Hi This is test tour.</p>',NULL,NULL,NULL,1,NULL,'2023-10-31 09:16:40','2023-10-31 09:16:40',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `bravo_tour_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_tours`
--

DROP TABLE IF EXISTS `bravo_tours`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_tours` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
  `content` text DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `banner_image_id` int(11) DEFAULT NULL,
  `short_desc` text DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  `location_id` int(11) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `map_lat` varchar(20) DEFAULT NULL,
  `map_lng` varchar(20) DEFAULT NULL,
  `map_zoom` int(11) DEFAULT NULL,
  `is_featured` tinyint(4) DEFAULT NULL,
  `gallery` varchar(255) DEFAULT NULL,
  `video` varchar(255) DEFAULT NULL,
  `price` decimal(12,2) DEFAULT NULL,
  `sale_price` decimal(12,2) DEFAULT NULL,
  `duration` int(11) DEFAULT NULL,
  `min_people` int(11) DEFAULT NULL,
  `max_people` int(11) DEFAULT NULL,
  `faqs` text DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `publish_date` datetime DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `default_state` tinyint(4) DEFAULT 1,
  `enable_fixed_date` tinyint(4) DEFAULT 0,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `last_booking_date` datetime DEFAULT NULL,
  `include` text DEFAULT NULL,
  `exclude` text DEFAULT NULL,
  `itinerary` text DEFAULT NULL,
  `review_score` decimal(2,1) DEFAULT NULL,
  `ical_import_url` varchar(191) DEFAULT NULL,
  `enable_service_fee` tinyint(4) DEFAULT NULL,
  `service_fee` text DEFAULT NULL,
  `surrounding` text DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `min_day_before_booking` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `bravo_tours_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_tours`
--

LOCK TABLES `bravo_tours` WRITE;
/*!40000 ALTER TABLE `bravo_tours` DISABLE KEYS */;
INSERT INTO `bravo_tours` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `short_desc`, `category_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `price`, `sale_price`, `duration`, `min_people`, `max_people`, `faqs`, `status`, `publish_date`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`, `default_state`, `enable_fixed_date`, `start_date`, `end_date`, `last_booking_date`, `include`, `exclude`, `itinerary`, `review_score`, `ical_import_url`, `enable_service_fee`, `service_fee`, `surrounding`, `author_id`, `min_day_before_booking`) VALUES (1,'American Parks Trail end Rapid City','american-parks-trail','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',21,44,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',3,1,'Arrondissement de Paris','48.852754','2.339155',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2000.00,268.00,1,1,20,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.5,NULL,NULL,NULL,NULL,1,NULL),
(2,'New York: Museum of Modern Art','new-york-museum-of-modern-art','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',22,45,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',4,1,'Porte de Vanves','48.853917','2.307199',12,1,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',900.00,484.00,1,1,18,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.0,NULL,NULL,NULL,NULL,1,NULL),
(3,'Los Angeles to San Francisco Express ','los-angeles-to-san-francisco-express','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',23,46,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',2,1,'Petit-Montrouge','48.884900','2.346377',12,1,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',1500.00,722.00,5,1,19,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,4,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.0,NULL,NULL,NULL,NULL,4,NULL),
(4,'Paris Vacation Travel ','paris-vacation-travel','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',24,47,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',3,2,'New York','40.707891','-74.008825',12,1,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',850.00,337.00,5,1,13,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',5.0,NULL,NULL,NULL,NULL,1,NULL),
(5,'Southwest States (Ex Los Angeles) ','southwest-states','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',25,48,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',1,2,'Regal Cinemas Battery Park 11','40.714578','-73.983888',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',1900.00,751.00,8,1,11,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,5,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.6,NULL,NULL,NULL,NULL,5,NULL),
(6,'Eastern Discovery (Start New Orleans)','eastern-discovery-start-new-orleans','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',26,49,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',1,2,'Prince St Station','40.720161','-74.009628',12,1,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,1323.00,2,1,10,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,6,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',5.0,NULL,NULL,NULL,NULL,6,NULL),
(7,'Eastern Discovery','eastern-discovery','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',27,50,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',1,2,'Pier 36 New York','40.708581','-73.998817',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,413.00,7,1,18,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,5,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.7,NULL,NULL,NULL,NULL,5,NULL),
(8,'Pure Luxe in Punta Mita','pure-luxe-in-punta-mita','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',28,51,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',3,3,'Trimmer Springs Rd, Sanger','36.822484','-119.365266',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,716.00,5,1,18,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,5,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.7,NULL,NULL,NULL,NULL,5,NULL),
(9,'Tastes and Sounds of the South 2019','tastes-and-sounds-of-the-south-2019','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',29,52,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',4,4,'United States','37.040023','-95.643144',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,1395.00,1,1,14,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,4,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.5,NULL,NULL,NULL,NULL,4,NULL),
(10,'Giverny and Versailles Small Group Day Trip','giverny-and-versailles-small-group-day-trip','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',30,53,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',2,5,'Washington, DC, USA','34.049345','-118.248479',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,217.00,4,1,16,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,5,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.6,NULL,NULL,NULL,NULL,5,NULL),
(11,'Trip of New York – Discover America','trip-of-new-york-discover-america','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',31,54,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',2,6,'New Jersey','40.035329','-74.417227',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,890.00,8,1,10,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,5,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.6,NULL,NULL,NULL,NULL,5,NULL),
(12,'Segway Tour of Washington, D.C. Highlights','segway-tour-of-washington-dc-highlights','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',32,55,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',4,7,'Francisco Parnassus Campus','37.782668','-122.425058',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,1203.00,9,1,16,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.8,NULL,NULL,NULL,NULL,1,NULL),
(13,'Hollywood Sign Small Group Tour in Luxury Van','hollywood-sign-small-group-tour-in-luxury-van','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',33,56,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',1,8,'Virginia','37.445688','-78.673668',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,1246.00,1,1,18,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,4,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.7,NULL,NULL,NULL,NULL,4,NULL),
(14,'San Francisco Express Never Ceases','san-francisco-express','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',34,57,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',4,7,'Comprehensive Cancer Center','37.757522','-122.447984',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,736.00,6,1,20,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.4,NULL,NULL,NULL,NULL,1,NULL),
(15,'Cannes and Antibes Night Tour','cannes-and-antibes-night-tour','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',35,58,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',3,1,'UCSF Helen Diller Family','36.201066','-88.112292',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,1399.00,3,1,13,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,4,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',4.6,NULL,NULL,NULL,NULL,4,NULL),
(16,'River Cruise Tour on the Seine','river-cruise-tour-on-the-seine','<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>',36,59,'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception',2,1,'Nevada, US','36.401066','-88.312292',12,0,'37,38,39,40,41,42,43','https://www.youtube.com/watch?v=UfEiKK-iX70',2100.00,1785.00,6,1,17,'[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]','publish',NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:26','2023-03-23 08:49:26',1,0,NULL,NULL,NULL,'[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]','[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]','[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]',5.0,NULL,NULL,NULL,NULL,1,NULL),
(17,'TEST TOUR','test-tour','<p>Hi This is test tour.</p>',NULL,NULL,NULL,1,1,NULL,NULL,NULL,8,NULL,NULL,'na',NULL,NULL,1,2,4,NULL,'publish',NULL,1,NULL,NULL,NULL,NULL,'2023-10-31 09:16:40','2023-10-31 09:16:40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `bravo_tours` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bravo_user_plan`
--

DROP TABLE IF EXISTS `bravo_user_plan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bravo_user_plan` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `plan_id` bigint(20) NOT NULL,
  `start_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `max_service` int(11) DEFAULT 0,
  `price` decimal(12,2) DEFAULT NULL,
  `plan_data` text DEFAULT NULL,
  `status` tinyint(4) DEFAULT 1,
  `user_id` bigint(20) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bravo_user_plan`
--

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

--
-- Table structure for table `ch_favorites`
--

DROP TABLE IF EXISTS `ch_favorites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ch_favorites` (
  `id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `favorite_id` bigint(20) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ch_favorites`
--

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

--
-- Table structure for table `ch_messages`
--

DROP TABLE IF EXISTS `ch_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ch_messages` (
  `id` bigint(20) NOT NULL,
  `type` varchar(191) NOT NULL,
  `from_id` bigint(20) NOT NULL,
  `to_id` bigint(20) NOT NULL,
  `body` varchar(5000) DEFAULT NULL,
  `attachment` varchar(191) DEFAULT NULL,
  `seen` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ch_messages`
--

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

--
-- Table structure for table `core_inbox`
--

DROP TABLE IF EXISTS `core_inbox`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_inbox` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `from_user` bigint(20) DEFAULT NULL,
  `to_user` bigint(20) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_model` varchar(50) DEFAULT NULL,
  `type` tinyint(4) DEFAULT 0,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_inbox`
--

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

--
-- Table structure for table `core_inbox_messages`
--

DROP TABLE IF EXISTS `core_inbox_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_inbox_messages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `inbox_id` bigint(20) DEFAULT NULL,
  `from_user` bigint(20) DEFAULT NULL,
  `to_user` bigint(20) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `type` tinyint(4) DEFAULT 0,
  `is_read` tinyint(4) DEFAULT 0,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_inbox_messages`
--

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

--
-- Table structure for table `core_languages`
--

DROP TABLE IF EXISTS `core_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_languages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `locale` varchar(10) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `flag` varchar(255) DEFAULT NULL,
  `status` varchar(20) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `last_build_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_languages`
--

LOCK TABLES `core_languages` WRITE;
/*!40000 ALTER TABLE `core_languages` DISABLE KEYS */;
INSERT INTO `core_languages` (`id`, `locale`, `name`, `flag`, `status`, `create_user`, `update_user`, `last_build_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1,'en','English','gb','publish',1,NULL,NULL,'2024-08-13 04:32:40','2023-03-23 08:49:24','2024-08-13 04:32:40'),
(2,'ja','Japanese','jp','publish',1,NULL,NULL,'2023-03-23 15:44:42','2023-03-23 08:49:24','2023-03-23 15:44:42'),
(3,'egy','Egyptian','eg','publish',1,NULL,NULL,'2023-03-23 15:44:42','2023-03-23 08:49:24','2023-03-23 15:44:42'),
(4,'en','English','gb','publish',1,NULL,NULL,'2024-08-13 04:32:40','2023-03-27 16:01:04','2024-08-13 04:32:40'),
(5,'ja','Japanese','jp','publish',1,NULL,NULL,'2024-08-13 04:32:40','2023-03-27 16:01:04','2024-08-13 04:32:40'),
(6,'egy','Egyptian','eg','publish',1,NULL,NULL,'2024-08-13 04:32:40','2023-03-27 16:01:04','2024-08-13 04:32:40'),
(7,'en','English','gb','publish',1,NULL,NULL,NULL,'2024-08-13 04:26:12','2024-08-13 04:26:12'),
(8,'ja','Japanese','jp','publish',1,NULL,NULL,'2024-08-13 04:32:40','2024-08-13 04:26:12','2024-08-13 04:32:40'),
(9,'egy','Egyptian','eg','publish',1,NULL,NULL,'2024-08-13 04:32:40','2024-08-13 04:26:12','2024-08-13 04:32:40'),
(10,'en','English','gb','publish',1,NULL,NULL,'2024-08-13 04:39:26','2024-08-13 04:33:17','2024-08-13 04:39:26'),
(11,'ja','Japanese','jp','draft',1,NULL,NULL,'2024-08-13 04:39:26','2024-08-13 04:33:17','2024-08-13 04:39:26'),
(12,'egy','Egyptian','eg','draft',1,NULL,NULL,'2024-08-13 04:39:26','2024-08-13 04:33:17','2024-08-13 04:39:26');
/*!40000 ALTER TABLE `core_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_menu_translations`
--

DROP TABLE IF EXISTS `core_menu_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_menu_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `items` longtext DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `core_menu_translations_locale_index` (`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_menu_translations`
--

LOCK TABLES `core_menu_translations` WRITE;
/*!40000 ALTER TABLE `core_menu_translations` DISABLE KEYS */;
INSERT INTO `core_menu_translations` (`id`, `origin_id`, `locale`, `items`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,1,'ja','[{\"name\":\"Home\",\"url\":\"\\/ja\\/\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Home Page\",\"url\":\"\\/ja\\/\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Page v2\",\"url\":\"\\/ja\\/page\\/home-page-v2\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Hotel\",\"url\":\"\\/ja\\/page\\/hotel\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Tour Agency\",\"url\":\"\\/ja\\/page\\/home-tour-agency\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Tour\",\"url\":\"\\/ja\\/page\\/tour\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Space\",\"url\":\"\\/ja\\/page\\/space\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Car\",\"url\":\"\\/ja\\/page\\/car\",\"item_model\":\"custom\",\"children\":[]}]},{\"name\":\"Hotel\",\"url\":\"\\/ja\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Hotel List\",\"url\":\"\\/ja\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Hotel Map\",\"url\":\"\\/ja\\/hotel?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Hotel Detail\",\"url\":\"\\/ja\\/hotel\\/parian-holiday-villas\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Tours\",\"url\":\"\\/ja\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Tour List\",\"url\":\"\\/ja\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Tour Map\",\"url\":\"\\/ja\\/tour?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Tour Detail\",\"url\":\"\\/ja\\/tour\\/paris-vacation-travel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Space\",\"url\":\"\\/ja\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Space List\",\"url\":\"\\/ja\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Space Map\",\"url\":\"\\/ja\\/space?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Space Detail\",\"url\":\"\\/ja\\/space\\/stay-greenwich-village\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Car\",\"url\":\"\\/ja\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Car List\",\"url\":\"\\/ja\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Car Map\",\"url\":\"\\/ja\\/car?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Car Detail\",\"url\":\"\\/ja\\/car\\/vinfast-lux-a20-plus\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Event\",\"url\":\"\\/ja\\/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Event List\",\"url\":\"\\/ja\\/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Event Map\",\"url\":\"\\/ja\\/event?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Event Detail\",\"url\":\"\\/ja\\/event\\/aspen-glade-weddings-events\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Flight\",\"url\":\"\\/ja\\/flight\",\"item_model\":\"custom\",\"model_name\":\"Custom\"},{\"name\":\"Boat\",\"url\":\"\\/ja\\/boat\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Boat List\",\"url\":\"\\/ja\\/boat\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Boat Map\",\"url\":\"\\/ja\\/boat?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Boat Detail\",\"url\":\"\\/ja\\/boat\\/blue-moon-yc-300\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Pages\",\"url\":\"#\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Plan\",\"url\":\"\\/ja\\/plan\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"News List\",\"url\":\"\\/ja\\/news\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"News Detail\",\"url\":\"\\/ja\\/news\\/morning-in-the-northern-sea\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Location Detail\",\"url\":\"\\/ja\\/location\\/paris\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Become a vendor\",\"url\":\"\\/ja\\/page\\/become-a-vendor\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Contact\",\"url\":\"\\/ja\\/contact\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]}]',1,NULL,'2023-03-23 08:49:25',NULL),
(2,1,'egy','[{\"name\":\"Home\",\"url\":\"\\/egy\\/\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Home Page\",\"url\":\"\\/egy\\/\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Page v2\",\"url\":\"\\/egy\\/page\\/home-page-v2\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Hotel\",\"url\":\"\\/egy\\/page\\/hotel\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Tour Agency\",\"url\":\"\\/egy\\/page\\/home-tour-agency\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Tour\",\"url\":\"\\/egy\\/page\\/tour\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Space\",\"url\":\"\\/egy\\/page\\/space\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Car\",\"url\":\"\\/egy\\/page\\/car\",\"item_model\":\"custom\",\"children\":[]}]},{\"name\":\"Hotel\",\"url\":\"\\/egy\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Hotel List\",\"url\":\"\\/egy\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Hotel Map\",\"url\":\"\\/egy\\/hotel?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Hotel Detail\",\"url\":\"\\/egy\\/hotel\\/parian-holiday-villas\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Tours\",\"url\":\"\\/egy\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Tour List\",\"url\":\"\\/egy\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Tour Map\",\"url\":\"\\/egy\\/tour?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Tour Detail\",\"url\":\"\\/egy\\/tour\\/paris-vacation-travel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Space\",\"url\":\"\\/egy\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Space List\",\"url\":\"\\/egy\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Space Map\",\"url\":\"\\/egy\\/space?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Space Detail\",\"url\":\"\\/egy\\/space\\/stay-greenwich-village\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Car\",\"url\":\"\\/egy\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Car List\",\"url\":\"\\/egy\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Car Map\",\"url\":\"\\/egy\\/car?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Car Detail\",\"url\":\"\\/egy\\/car\\/vinfast-lux-a20-plus\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Event\",\"url\":\"\\/egy\\/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Event List\",\"url\":\"\\/egy\\/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Event Map\",\"url\":\"\\/egy\\/event?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Event Detail\",\"url\":\"\\/egy\\/event\\/aspen-glade-weddings-events\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Flight\",\"url\":\"\\/egy\\/flight\",\"item_model\":\"custom\",\"model_name\":\"Custom\"},{\"name\":\"Boat\",\"url\":\"\\/egy\\/boat\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Boat List\",\"url\":\"\\/egy\\/boat\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Boat Map\",\"url\":\"\\/egy\\/boat?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Boat Detail\",\"url\":\"\\/egy\\/boat\\/blue-moon-yc-300\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Pages\",\"url\":\"#\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Plan\",\"url\":\"\\/egy\\/plan\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"News List\",\"url\":\"\\/egy\\/news\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"News Detail\",\"url\":\"\\/egy\\/news\\/morning-in-the-northern-sea\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Location Detail\",\"url\":\"\\/egy\\/location\\/paris\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Become a vendor\",\"url\":\"\\/egy\\/page\\/become-a-vendor\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Contact\",\"url\":\"\\/egy\\/contact\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]}]',1,NULL,'2023-03-23 08:49:25',NULL),
(3,1,'en','[{\"name\":\"Home\",\"url\":\"/\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Hotel\",\"url\":\"/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Hotel List\",\"url\":\"/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Hotel Map\",\"url\":\"/hotel?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Hotel Detail\",\"url\":\"/hotel/parian-holiday-villas\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Tours\",\"url\":\"/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Tour List\",\"url\":\"/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Tour Map\",\"url\":\"/tour?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Tour Detail\",\"url\":\"/tour/paris-vacation-travel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Space\",\"url\":\"/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Space List\",\"url\":\"/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Space Map\",\"url\":\"/space?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Space Detail\",\"url\":\"/space/stay-greenwich-village\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Car\",\"url\":\"/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Car List\",\"url\":\"/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Car Map\",\"url\":\"/car?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Car Detail\",\"url\":\"/car/vinfast-lux-a20-plus\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Event\",\"url\":\"/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Event List\",\"url\":\"/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Event Map\",\"url\":\"/event?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Event Detail\",\"url\":\"/event/aspen-glade-weddings-events\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Boat\",\"url\":\"/boat\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Boat List\",\"url\":\"/boat\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Boat Map\",\"url\":\"/boat?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Boat Detail\",\"url\":\"/boat/blue-moon-yc-300\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Pages\",\"url\":\"#\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Plan\",\"url\":\"/plan\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"News List\",\"url\":\"/news\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"News Detail\",\"url\":\"/news/morning-in-the-northern-sea\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Location Detail\",\"url\":\"/location/paris\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Become a vendor\",\"url\":\"/page/become-a-vendor\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Contact\",\"url\":\"/contact\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]}]',1,1,'2024-08-13 04:44:20','2024-08-14 14:37:15');
/*!40000 ALTER TABLE `core_menu_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_menus`
--

DROP TABLE IF EXISTS `core_menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_menus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `items` longtext DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_menus`
--

LOCK TABLES `core_menus` WRITE;
/*!40000 ALTER TABLE `core_menus` DISABLE KEYS */;
INSERT INTO `core_menus` (`id`, `name`, `items`, `create_user`, `update_user`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1,'Main Menu','[{\"name\":\"Home\",\"url\":\"\\/\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Hotel\",\"url\":\"\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Hotel List\",\"url\":\"\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Hotel Map\",\"url\":\"\\/hotel?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Hotel Detail\",\"url\":\"\\/hotel\\/parian-holiday-villas\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Tours\",\"url\":\"\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Tour List\",\"url\":\"\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Tour Map\",\"url\":\"\\/tour?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Tour Detail\",\"url\":\"\\/tour\\/paris-vacation-travel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Space\",\"url\":\"\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Space List\",\"url\":\"\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Space Map\",\"url\":\"\\/space?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Space Detail\",\"url\":\"\\/space\\/stay-greenwich-village\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Car\",\"url\":\"\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Car List\",\"url\":\"\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Car Map\",\"url\":\"\\/car?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Car Detail\",\"url\":\"\\/car\\/vinfast-lux-a20-plus\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Event\",\"url\":\"\\/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Event List\",\"url\":\"\\/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Event Map\",\"url\":\"\\/event?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Event Detail\",\"url\":\"\\/event\\/aspen-glade-weddings-events\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Boat\",\"url\":\"\\/boat\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Boat List\",\"url\":\"\\/boat\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Boat Map\",\"url\":\"\\/boat?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Boat Detail\",\"url\":\"\\/boat\\/blue-moon-yc-300\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]},{\"name\":\"Pages\",\"url\":\"#\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[{\"name\":\"Plan\",\"url\":\"\\/plan\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"News List\",\"url\":\"\\/news\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"News Detail\",\"url\":\"\\/news\\/morning-in-the-northern-sea\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Location Detail\",\"url\":\"\\/location\\/paris\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Become a vendor\",\"url\":\"\\/page\\/become-a-vendor\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]},{\"name\":\"Contact\",\"url\":\"\\/contact\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"is_removed\":true,\"_open\":false,\"children\":[]}]}]',1,1,NULL,NULL,'2023-03-23 08:49:25','2024-08-14 14:37:15');
/*!40000 ALTER TABLE `core_menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_news`
--

DROP TABLE IF EXISTS `core_news`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_news` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `cat_id` int(11) DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_news`
--

LOCK TABLES `core_news` WRITE;
/*!40000 ALTER TABLE `core_news` DISABLE KEYS */;
INSERT INTO `core_news` (`id`, `title`, `content`, `slug`, `status`, `cat_id`, `image_id`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`, `author_id`) VALUES (1,'The day on Paris',' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception  From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n    From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception','the-day-on-paris','publish',3,115,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,1),
(2,'Pure Luxe in Punta Mita',' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n    From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception','pure-luxe-in-punta-mita','publish',2,116,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,1),
(3,'All Aboard the Rocky Mountaineer',' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception  From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n    From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception','all-aboard-the-rocky-mountaineer','publish',2,117,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,1),
(4,'City Spotlight: Philadelphia',' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception  From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n    From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception','city-spotlight-philadelphia','publish',3,118,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,1),
(5,'Tiptoe through the Tulips of Washington',' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception  From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n    From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception','tiptoe-through-the-tulips-of-washington','publish',4,119,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,1),
(6,'A Seaside Reset in Laguna Beach',' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception  From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n    From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception','a-seaside-reset-in-laguna-beach','publish',1,120,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,1),
(7,'America  National Parks with Denver',' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception  From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n    From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception','america-national-parks-with-denver','publish',1,121,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,1),
(8,'Morning in the Northern sea',' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception  From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n    From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of  The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception','morning-in-the-northern-sea','publish',4,116,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,1);
/*!40000 ALTER TABLE `core_news` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_news_category`
--

DROP TABLE IF EXISTS `core_news_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_news_category` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `_lft` int(10) unsigned NOT NULL DEFAULT 0,
  `_rgt` int(10) unsigned NOT NULL DEFAULT 0,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `core_news_category__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_news_category`
--

LOCK TABLES `core_news_category` WRITE;
/*!40000 ALTER TABLE `core_news_category` DISABLE KEYS */;
INSERT INTO `core_news_category` (`id`, `name`, `content`, `slug`, `status`, `_lft`, `_rgt`, `parent_id`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `origin_id`, `lang`) VALUES (1,'Adventure Travel',NULL,'adventure-travel','publish',1,2,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(2,'Ecotourism',NULL,'ecotourism','publish',3,4,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(3,'Sea Travel ',NULL,'sea-travel','publish',5,6,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(4,'Hosted Tour',NULL,'hosted-tour','publish',7,8,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(5,'City trips ',NULL,'city-trips','publish',9,10,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL),
(6,'Escorted Tour ',NULL,'escorted-tour','publish',11,12,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL);
/*!40000 ALTER TABLE `core_news_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_news_category_translations`
--

DROP TABLE IF EXISTS `core_news_category_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_news_category_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `core_news_category_translations_locale_index` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_news_category_translations`
--

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

--
-- Table structure for table `core_news_tag`
--

DROP TABLE IF EXISTS `core_news_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_news_tag` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `news_id` int(11) DEFAULT NULL,
  `tag_id` int(11) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_news_tag`
--

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

--
-- Table structure for table `core_news_translations`
--

DROP TABLE IF EXISTS `core_news_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_news_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `core_news_translations_locale_index` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_news_translations`
--

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

--
-- Table structure for table `core_notifications`
--

DROP TABLE IF EXISTS `core_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_notifications` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `from_user` bigint(20) DEFAULT NULL,
  `to_user` bigint(20) DEFAULT NULL,
  `is_read` tinyint(4) DEFAULT 0,
  `type` varchar(50) DEFAULT NULL,
  `type_group` varchar(50) DEFAULT NULL,
  `target_id` bigint(20) DEFAULT NULL,
  `target_parent_id` bigint(20) DEFAULT NULL,
  `params` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_notifications`
--

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

--
-- Table structure for table `core_page_translations`
--

DROP TABLE IF EXISTS `core_page_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_page_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `short_desc` text DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `core_page_translations_origin_id_locale_unique` (`origin_id`,`locale`),
  KEY `core_page_translations_locale_index` (`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_page_translations`
--

LOCK TABLES `core_page_translations` WRITE;
/*!40000 ALTER TABLE `core_page_translations` DISABLE KEYS */;
INSERT INTO `core_page_translations` (`id`, `origin_id`, `locale`, `title`, `content`, `short_desc`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,2,'en','Home Tour',NULL,NULL,1,NULL,'2024-08-13 04:32:33','2024-08-13 04:32:33'),
(2,1,'en','Home Page',NULL,NULL,1,NULL,'2024-08-13 04:33:06','2024-08-13 04:33:06');
/*!40000 ALTER TABLE `core_page_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_pages`
--

DROP TABLE IF EXISTS `core_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_pages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `short_desc` text DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `publish_date` datetime DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `template_id` int(11) DEFAULT NULL,
  `show_template` tinyint(4) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `header_style` varchar(255) DEFAULT NULL,
  `custom_logo` int(11) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `core_pages_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_pages`
--

LOCK TABLES `core_pages` WRITE;
/*!40000 ALTER TABLE `core_pages` DISABLE KEYS */;
INSERT INTO `core_pages` (`id`, `slug`, `title`, `content`, `short_desc`, `status`, `publish_date`, `image_id`, `template_id`, `show_template`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`, `header_style`, `custom_logo`, `author_id`) VALUES (1,'home-page','Home Page',NULL,NULL,'publish',NULL,227,1,NULL,1,1,NULL,NULL,NULL,'2023-03-23 08:49:25','2024-08-13 04:33:05','normal',227,1),
(2,'tour','Home Tour',NULL,NULL,'publish',NULL,227,2,1,1,1,NULL,NULL,NULL,'2023-03-23 08:49:25','2024-08-13 04:32:41','normal',227,1),
(3,'space','Home Space',NULL,NULL,'publish',NULL,NULL,3,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,NULL,NULL,1),
(4,'hotel','Home Hotel',NULL,NULL,'publish',NULL,NULL,4,1,1,1,NULL,NULL,NULL,'2023-03-23 08:49:25','2024-08-13 04:31:51',NULL,NULL,1),
(5,'become-a-vendor','Become a vendor',NULL,NULL,'publish',NULL,NULL,5,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,NULL,NULL,1),
(6,'car','Home Car',NULL,NULL,'publish',NULL,NULL,6,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,NULL,NULL,1),
(7,'home-page-v2','Home Page v2',NULL,NULL,'publish',NULL,NULL,8,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,'transparent',201,1),
(8,'home-tour-agency','Home Tour Agency',NULL,NULL,'publish',NULL,NULL,7,NULL,1,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL,'transparent',201,1),
(9,'privacy-policy','Privacy policy','<h1>Privacy policy</h1>\n<p> This privacy policy (\"Policy\") describes how the personally identifiable information (\"Personal Information\") you may provide on the <a target=\"_blank\" href=\"http://dev.bookingcore.org\" rel=\"noreferrer noopener\">dev.bookingcore.org</a> website (\"Website\" or \"Service\") and any of its related products and services (collectively, \"Services\") is collected, protected and used. It also describes the choices available to you regarding our use of your Personal Information and how you can access and update this information. This Policy is a legally binding agreement between you (\"User\", \"you\" or \"your\") and this Website operator (\"Operator\", \"we\", \"us\" or \"our\"). By accessing and using the Website and Services, you acknowledge that you have read, understood, and agree to be bound by the terms of this Agreement. This Policy does not apply to the practices of companies that we do not own or control, or to individuals that we do not employ or manage.</p>\n<h2>Automatic collection of information</h2>\n<p>When you open the Website, our servers automatically record information that your browser sends. This data may include information such as your device\'s IP address, browser type and version, operating system type and version, language preferences or the webpage you were visiting before you came to the Website and Services, pages of the Website and Services that you visit, the time spent on those pages, information you search for on the Website, access times and dates, and other statistics.</p>\n<p>Information collected automatically is used only to identify potential cases of abuse and establish statistical information regarding the usage and traffic of the Website and Services. This statistical information is not otherwise aggregated in such a way that would identify any particular user of the system.</p>\n<h2>Collection of personal information</h2>\n<p>You can access and use the Website and Services without telling us who you are or revealing any information by which someone could identify you as a specific, identifiable individual. If, however, you wish to use some of the features on the Website, you may be asked to provide certain Personal Information (for example, your name and e-mail address). We receive and store any information you knowingly provide to us when you create an account, publish content,  or fill any online forms on the Website. When required, this information may include the following:</p>\n<ul>\n<li>Personal details such as name, country of residence, etc.</li>\n<li>Contact information such as email address, address, etc.</li>\n<li>Account details such as user name, unique user ID, password, etc.</li>\n<li>Information about other individuals such as your family members, friends, etc.</li>\n</ul>\n<p>Some of the information we collect is directly from you via the Website and Services. However, we may also collect Personal Information about you from other sources such as public databases and our joint marketing partners. You can choose not to provide us with your Personal Information, but then you may not be able to take advantage of some of the features on the Website. Users who are uncertain about what information is mandatory are welcome to contact us.</p>\n<h2>Use and processing of collected information</h2>\n<p>In order to make the Website and Services available to you, or to meet a legal obligation, we need to collect and use certain Personal Information. If you do not provide the information that we request, we may not be able to provide you with the requested products or services. Any of the information we collect from you may be used for the following purposes:</p>\n<ul>\n<li>Create and manage user accounts</li>\n<li>Send administrative information</li>\n<li>Request user feedback</li>\n<li>Improve user experience</li>\n<li>Enforce terms and conditions and policies</li>\n<li>Run and operate the Website and Services</li>\n</ul>\n<p>Processing your Personal Information depends on how you interact with the Website and Services, where you are located in the world and if one of the following applies: (i) you have given your consent for one or more specific purposes; this, however, does not apply, whenever the processing of Personal Information is subject to European data protection law; (ii) provision of information is necessary for the performance of an agreement with you and/or for any pre-contractual obligations thereof; (iii) processing is necessary for compliance with a legal obligation to which you are subject; (iv) processing is related to a task that is carried out in the public interest or in the exercise of official authority vested in us; (v) processing is necessary for the purposes of the legitimate interests pursued by us or by a third party.</p>\n<p> Note that under some legislations we may be allowed to process information until you object to such processing (by opting out), without having to rely on consent or any other of the following legal bases below. In any case, we will be happy to clarify the specific legal basis that applies to the processing, and in particular whether the provision of Personal Information is a statutory or contractual requirement, or a requirement necessary to enter into a contract.</p>\n<h2>Managing information</h2>\n<p>You are able to delete certain Personal Information we have about you. The Personal Information you can delete may change as the Website and Services change. When you delete Personal Information, however, we may maintain a copy of the unrevised Personal Information in our records for the duration necessary to comply with our obligations to our affiliates and partners, and for the purposes described below. If you would like to delete your Personal Information or permanently delete your account, you can do so by contacting us.</p>\n<h2>Disclosure of information</h2>\n<p> Depending on the requested Services or as necessary to complete any transaction or provide any service you have requested, we may share your information with your consent with our trusted third parties that work with us, any other affiliates and subsidiaries we rely upon to assist in the operation of the Website and Services available to you. We do not share Personal Information with unaffiliated third parties. These service providers are not authorized to use or disclose your information except as necessary to perform services on our behalf or comply with legal requirements. We may share your Personal Information for these purposes only with third parties whose privacy policies are consistent with ours or who agree to abide by our policies with respect to Personal Information. These third parties are given Personal Information they need only in order to perform their designated functions, and we do not authorize them to use or disclose Personal Information for their own marketing or other purposes.</p>\n<p>We will disclose any Personal Information we collect, use or receive if required or permitted by law, such as to comply with a subpoena, or similar legal process, and when we believe in good faith that disclosure is necessary to protect our rights, protect your safety or the safety of others, investigate fraud, or respond to a government request.</p>\n<h2>Retention of information</h2>\n<p>We will retain and use your Personal Information for the period necessary to comply with our legal obligations, resolve disputes, and enforce our agreements unless a longer retention period is required or permitted by law. We may use any aggregated data derived from or incorporating your Personal Information after you update or delete it, but not in a manner that would identify you personally. Once the retention period expires, Personal Information shall be deleted. Therefore, the right to access, the right to erasure, the right to rectification and the right to data portability cannot be enforced after the expiration of the retention period.</p>\n<h2>The rights of users</h2>\n<p>You may exercise certain rights regarding your information processed by us. In particular, you have the right to do the following: (i) you have the right to withdraw consent where you have previously given your consent to the processing of your information; (ii) you have the right to object to the processing of your information if the processing is carried out on a legal basis other than consent; (iii) you have the right to learn if information is being processed by us, obtain disclosure regarding certain aspects of the processing and obtain a copy of the information undergoing processing; (iv) you have the right to verify the accuracy of your information and ask for it to be updated or corrected; (v) you have the right, under certain circumstances, to restrict the processing of your information, in which case, we will not process your information for any purpose other than storing it; (vi) you have the right, under certain circumstances, to obtain the erasure of your Personal Information from us; (vii) you have the right to receive your information in a structured, commonly used and machine readable format and, if technically feasible, to have it transmitted to another controller without any hindrance. This provision is applicable provided that your information is processed by automated means and that the processing is based on your consent, on a contract which you are part of or on pre-contractual obligations thereof.</p>\n<h2>Privacy of children</h2>\n<p>We do not knowingly collect any Personal Information from children under the age of 18. If you are under the age of 18, please do not submit any Personal Information through the Website and Services. We encourage parents and legal guardians to monitor their children\'s Internet usage and to help enforce this Policy by instructing their children never to provide Personal Information through the Website and Services without their permission. If you have reason to believe that a child under the age of 18 has provided Personal Information to us through the Website and Services, please contact us. You must also be old enough to consent to the processing of your Personal Information in your country (in some countries we may allow your parent or guardian to do so on your behalf).</p>\n<h2>Cookies</h2>\n<p>The Website and Services use \"cookies\" to help personalize your online experience. A cookie is a text file that is placed on your hard disk by a web page server. Cookies cannot be used to run programs or deliver viruses to your computer. Cookies are uniquely assigned to you, and can only be read by a web server in the domain that issued the cookie to you.</p>\n<p>We may use cookies to collect, store, and track information for statistical purposes to operate the Website and Services. You have the ability to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. To learn more about cookies and how to manage them, visit <a target=\"_blank\" href=\"https://www.internetcookies.org\" rel=\"noreferrer noopener\">internetcookies.org</a></p>\n<h2>Do Not Track signals</h2>\n<p>Some browsers incorporate a Do Not Track feature that signals to websites you visit that you do not want to have your online activity tracked. Tracking is not the same as using or collecting information in connection with a website. For these purposes, tracking refers to collecting personally identifiable information from consumers who use or visit a website or online service as they move across different websites over time. How browsers communicate the Do Not Track signal is not yet uniform. As a result, the Website and Services are not yet set up to interpret or respond to Do Not Track signals communicated by your browser. Even so, as described in more detail throughout this Policy, we limit our use and collection of your personal information.</p>\n<h2>Email marketing</h2>\n<p>We offer electronic newsletters to which you may voluntarily subscribe at any time. We are committed to keeping your e-mail address confidential and will not disclose your email address to any third parties except as allowed in the information use and processing section or for the purposes of utilizing a third party provider to send such emails. We will maintain the information sent via e-mail in accordance with applicable laws and regulations.</p>\n<p>In compliance with the CAN-SPAM Act, all e-mails sent from us will clearly state who the e-mail is from and provide clear information on how to contact the sender. You may choose to stop receiving our newsletter or marketing emails by following the unsubscribe instructions included in these emails or by contacting us. However, you will continue to receive essential transactional emails.</p>\n<h2>Links to other resources</h2>\n<p>The Website and Services contain links to other resources that are not owned or controlled by us. Please be aware that we are not responsible for the privacy practices of such other resources or third parties. We encourage you to be aware when you leave the Website and Services and to read the privacy statements of each and every resource that may collect Personal Information.</p>\n<h2>Information security</h2>\n<p>We secure information you provide on computer servers in a controlled, secure environment, protected from unauthorized access, use, or disclosure. We maintain reasonable administrative, technical, and physical safeguards in an effort to protect against unauthorized access, use, modification, and disclosure of Personal Information in its control and custody. However, no data transmission over the Internet or wireless network can be guaranteed. Therefore, while we strive to protect your Personal Information, you acknowledge that (i) there are security and privacy limitations of the Internet which are beyond our control; (ii) the security, integrity, and privacy of any and all information and data exchanged between you and the Website and Services cannot be guaranteed; and (iii) any such information and data may be viewed or tampered with in transit by a third party, despite best efforts.</p>\n<h2>Data breach</h2>\n<p>In the event we become aware that the security of the Website and Services has been compromised or users Personal Information has been disclosed to unrelated third parties as a result of external activity, including, but not limited to, security attacks or fraud, we reserve the right to take reasonably appropriate measures, including, but not limited to, investigation and reporting, as well as notification to and cooperation with law enforcement authorities. In the event of a data breach, we will make reasonable efforts to notify affected individuals if we believe that there is a reasonable risk of harm to the user as a result of the breach or if notice is otherwise required by law. When we do, we will post a notice on the Website, send you an email.</p>\n<h2>Changes and amendments</h2>\n<p>We reserve the right to modify this Policy or its terms relating to the Website and Services from time to time in our discretion and will notify you of any material changes to the way in which we treat Personal Information. When we do, we will post a notification on the main page of the Website. We may also provide notice to you in other ways in our discretion, such as through contact information you have provided. Any updated version of this Policy will be effective immediately upon the posting of the revised Policy unless otherwise specified. Your continued use of the Website and Services after the effective date of the revised Policy (or such other act specified at that time) will constitute your consent to those changes. However, we will not, without your consent, use your Personal Information in a manner materially different than what was stated at the time your Personal Information was collected. Policy was created with <a style=\"color:inherit;\" target=\"_blank\" href=\"https://www.websitepolicies.com/privacy-policy-generator\" rel=\"noreferrer noopener\">WebsitePolicies</a>.</p>\n<h2>Acceptance of this policy</h2>\n<p>You acknowledge that you have read this Policy and agree to all its terms and conditions. By accessing and using the Website and Services you agree to be bound by this Policy. If you do not agree to abide by the terms of this Policy, you are not authorized to access or use the Website and Services.</p>\n<h2>Contacting us</h2>\n<p>If you would like to contact us to understand more about this Policy or wish to contact us concerning any matter relating to individual rights and your Personal Information, you may do so via the <a target=\"_blank\" href=\"http://dev.bookingcore.org/contact\" rel=\"noreferrer noopener\">contact form</a></p>\n<p>This document was last updated on October 6, 2020</p>',NULL,'publish',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL,1);
/*!40000 ALTER TABLE `core_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_role_permissions`
--

DROP TABLE IF EXISTS `core_role_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_role_permissions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(10) unsigned DEFAULT NULL,
  `permission` varchar(191) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `core_role_permissions_role_id_permission_unique` (`role_id`,`permission`)
) ENGINE=InnoDB AUTO_INCREMENT=150 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_role_permissions`
--

LOCK TABLES `core_role_permissions` WRITE;
/*!40000 ALTER TABLE `core_role_permissions` DISABLE KEYS */;
INSERT INTO `core_role_permissions` (`id`, `role_id`, `permission`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,1,'report_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(2,1,'contact_manage',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(3,1,'newsletter_manage',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(4,1,'language_manage',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(5,1,'language_translation',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(6,1,'booking_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(7,1,'booking_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(8,1,'booking_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(9,1,'enquiry_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(10,1,'enquiry_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(11,1,'enquiry_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(12,1,'template_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(13,1,'template_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(14,1,'template_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(15,1,'template_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(16,1,'news_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(17,1,'news_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(18,1,'news_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(19,1,'news_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(20,1,'news_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(21,1,'role_manage',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(22,1,'role_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(23,1,'role_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(24,1,'role_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(25,1,'role_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(26,1,'permission_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(27,1,'permission_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(28,1,'permission_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(29,1,'permission_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(30,1,'dashboard_access',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(31,1,'dashboard_vendor_access',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(32,1,'setting_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(33,1,'menu_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(34,1,'menu_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(35,1,'menu_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(36,1,'menu_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(37,1,'user_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(38,1,'user_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(39,1,'user_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(40,1,'user_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(41,1,'page_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(42,1,'page_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(43,1,'page_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(44,1,'page_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(45,1,'page_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(46,1,'setting_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(47,1,'media_upload',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(48,1,'media_manage',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(49,1,'location_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(50,1,'location_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(51,1,'location_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(52,1,'location_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(53,1,'location_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(54,1,'review_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(55,1,'system_log_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(56,1,'theme_manage',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(57,1,'social_manage_forum',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(58,1,'plugin_manage',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(59,1,'vendor_payout_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(60,1,'vendor_payout_manage',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(61,1,'popup_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(62,1,'popup_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(63,1,'popup_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(64,1,'popup_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(65,1,'media_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(66,1,'hotel_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(67,1,'hotel_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(68,1,'hotel_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(69,1,'hotel_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(70,1,'hotel_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(71,1,'hotel_manage_attributes',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(72,1,'space_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(73,1,'space_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(74,1,'space_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(75,1,'space_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(76,1,'space_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(77,1,'space_manage_attributes',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(78,1,'car_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(79,1,'car_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(80,1,'car_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(81,1,'car_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(82,1,'car_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(83,1,'car_manage_attributes',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(84,1,'event_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(85,1,'event_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(86,1,'event_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(87,1,'event_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(88,1,'event_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(89,1,'event_manage_attributes',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(90,1,'tour_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(91,1,'tour_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(92,1,'tour_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(93,1,'tour_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(94,1,'tour_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(95,1,'tour_manage_attributes',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(96,1,'flight_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(97,1,'flight_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(98,1,'flight_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(99,1,'flight_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(100,1,'flight_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(101,1,'flight_manage_attributes',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(102,1,'boat_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(103,1,'boat_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(104,1,'boat_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(105,1,'boat_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(106,1,'boat_manage_others',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(107,1,'boat_manage_attributes',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(108,1,'coupon_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(109,1,'coupon_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(110,1,'coupon_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(111,1,'coupon_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(112,2,'media_upload',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(113,2,'tour_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(114,2,'tour_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(115,2,'tour_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(116,2,'tour_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(117,2,'dashboard_vendor_access',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(118,2,'space_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(119,2,'space_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(120,2,'space_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(121,2,'space_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(122,2,'hotel_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(123,2,'hotel_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(124,2,'hotel_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(125,2,'hotel_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(126,2,'car_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(127,2,'car_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(128,2,'car_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(129,2,'car_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(130,2,'event_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(131,2,'event_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(132,2,'event_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(133,2,'event_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(134,2,'news_view',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(135,2,'news_create',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(136,2,'news_update',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(137,2,'news_delete',NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(138,2,'enquiry_view',NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(139,2,'enquiry_update',NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(140,2,'flight_create',NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(141,2,'flight_view',NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(142,2,'flight_update',NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(143,2,'flight_delete',NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(144,2,'boat_create',NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(145,2,'boat_view',NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(146,2,'boat_update',NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(147,2,'boat_delete',NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(148,2,'boat_manage_others',NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(149,2,'boat_manage_attributes',NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37');
/*!40000 ALTER TABLE `core_role_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_roles`
--

DROP TABLE IF EXISTS `core_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_roles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) DEFAULT NULL,
  `code` varchar(50) DEFAULT NULL,
  `commission` decimal(8,2) DEFAULT NULL,
  `commission_type` varchar(40) DEFAULT 'default',
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `status` varchar(30) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_roles`
--

LOCK TABLES `core_roles` WRITE;
/*!40000 ALTER TABLE `core_roles` DISABLE KEYS */;
INSERT INTO `core_roles` (`id`, `name`, `code`, `commission`, `commission_type`, `create_user`, `update_user`, `status`, `created_at`, `updated_at`) VALUES (1,'administrator','administrator',NULL,'default',NULL,NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(2,'vendor','vendor',NULL,'default',NULL,NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24'),
(3,'customer','customer',NULL,'default',NULL,NULL,NULL,'2023-03-23 08:49:24','2023-03-23 08:49:24');
/*!40000 ALTER TABLE `core_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_settings`
--

DROP TABLE IF EXISTS `core_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `group` varchar(50) DEFAULT NULL,
  `val` text DEFAULT NULL,
  `autoload` tinyint(4) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=290 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_settings`
--

LOCK TABLES `core_settings` WRITE;
/*!40000 ALTER TABLE `core_settings` DISABLE KEYS */;
INSERT INTO `core_settings` (`id`, `name`, `group`, `val`, `autoload`, `create_user`, `update_user`, `lang`, `created_at`, `updated_at`) VALUES (1,'site_locale','general','en',NULL,1,1,NULL,NULL,'2023-09-18 05:39:36'),
(2,'site_enable_multi_lang','general','1',NULL,1,1,NULL,NULL,'2023-09-18 05:39:36'),
(3,'enable_rtl_egy','general','1',NULL,NULL,NULL,NULL,NULL,NULL),
(4,'menu_locations',NULL,'{\"primary\":1}',NULL,1,1,NULL,'2023-03-23 08:49:25','2024-08-13 04:44:48'),
(5,'admin_email',NULL,'contact@bookingcore.test',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(6,'email_from_name',NULL,'Booking Core',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(7,'email_from_address',NULL,'contact@bookingcore.test',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(8,'logo_id',NULL,'227',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(9,'site_favicon',NULL,'227',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(10,'topbar_left_text',NULL,'<div class=\"socials\">\r\n<a href=\"#\"><i class=\"fa fa-facebook\"></i></a>\r\n<a href=\"#\"><i class=\"fa fa-linkedin\"></i></a>\r\n<a href=\"#\"><i class=\"fa fa-google-plus\"></i></a>\r\n</div>\r\n<span class=\"line\"></span>\r\n<a href=\"mailto:info@testsoftware.online\">info@test.com</a>',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(11,'footer_text_left',NULL,'<p>Copyright &copy; 2024 by TestSoftware</p>',NULL,1,1,NULL,'2023-03-23 08:49:25','2024-08-13 04:31:14'),
(12,'footer_text_right',NULL,'<p>Booking2</p>',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(13,'list_widget_footer',NULL,'[{\"title\":\"NEED HELP?\",\"size\":\"3\",\"content\":\"<div class=\\\"contact\\\">\\r\\n        <div class=\\\"c-title\\\">\\r\\n            Call Us\\r\\n        <\\/div>\\r\\n        <div class=\\\"sub\\\">\\r\\n            + 00 1234567899\\r\\n        <\\/div>\\r\\n    <\\/div>\\r\\n    <div class=\\\"contact\\\">\\r\\n        <div class=\\\"c-title\\\">\\r\\n            Email for Us\\r\\n        <\\/div>\\r\\n        <div class=\\\"sub\\\">\\r\\n            hello@yest.com\\r\\n        <\\/div>\\r\\n    <\\/div>\\r\\n    <div class=\\\"contact\\\">\\r\\n        <div class=\\\"c-title\\\">\\r\\n            Follow Us\\r\\n        <\\/div>\\r\\n        <div class=\\\"sub\\\">\\r\\n            <a href=\\\"#\\\">\\r\\n                <i class=\\\"icofont-facebook\\\"><\\/i>\\r\\n            <\\/a>\\r\\n            <a href=\\\"#\\\">\\r\\n               <i class=\\\"icofont-twitter\\\"><\\/i>\\r\\n            <\\/a>\\r\\n            <a href=\\\"#\\\">\\r\\n                <i class=\\\"icofont-youtube-play\\\"><\\/i>\\r\\n            <\\/a>\\r\\n        <\\/div>\\r\\n    <\\/div>\"},{\"title\":\"COMPANY\",\"size\":\"3\",\"content\":\"<ul>\\r\\n    <li><a href=\\\"#\\\">About Us<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">Community Blog<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">Rewards<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">Work with Us<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">Meet the Team<\\/a><\\/li>\\r\\n<\\/ul>\"},{\"title\":\"SUPPORT\",\"size\":\"3\",\"content\":\"<ul>\\r\\n    <li><a href=\\\"#\\\">Account<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">Legal<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">Contact<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">Affiliate Program<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">Privacy Policy<\\/a><\\/li>\\r\\n<\\/ul>\"},{\"title\":\"SETTINGS\",\"size\":\"3\",\"content\":\"<ul>\\r\\n<li><a href=\\\"#\\\">Setting 1<\\/a><\\/li>\\r\\n<li><a href=\\\"#\\\">Setting 2<\\/a><\\/li>\\r\\n<\\/ul>\"}]',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(14,'list_widget_footer_ja',NULL,'[{\"title\":\"\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\uff1f\",\"size\":\"3\",\"content\":\"<div class=\\\"contact\\\">\\r\\n        <div class=\\\"c-title\\\">\\r\\n            \\u304a\\u96fb\\u8a71\\u304f\\u3060\\u3055\\u3044\\r\\n        <\\/div>\\r\\n        <div class=\\\"sub\\\">\\r\\n            + 00 222 44 5678\\r\\n        <\\/div>\\r\\n    <\\/div>\\r\\n    <div class=\\\"contact\\\">\\r\\n        <div class=\\\"c-title\\\">\\r\\n            \\u90f5\\u4fbf\\u7269\\r\\n        <\\/div>\\r\\n        <div class=\\\"sub\\\">\\r\\n            hello@yoursite.com\\r\\n        <\\/div>\\r\\n    <\\/div>\\r\\n    <div class=\\\"contact\\\">\\r\\n        <div class=\\\"c-title\\\">\\r\\n            \\u30d5\\u30a9\\u30ed\\u30fc\\u3059\\u308b\\r\\n        <\\/div>\\r\\n        <div class=\\\"sub\\\">\\r\\n            <a href=\\\"#\\\">\\r\\n                <i class=\\\"icofont-facebook\\\"><\\/i>\\r\\n            <\\/a>\\r\\n            <a href=\\\"#\\\">\\r\\n                <i class=\\\"icofont-twitter\\\"><\\/i>\\r\\n            <\\/a>\\r\\n            <a href=\\\"#\\\">\\r\\n                <i class=\\\"icofont-youtube-play\\\"><\\/i>\\r\\n            <\\/a>\\r\\n        <\\/div>\\r\\n    <\\/div>\"},{\"title\":\"\\u4f1a\\u793e\",\"size\":\"3\",\"content\":\"<ul>\\r\\n    <li><a href=\\\"#\\\">\\u7d04, \\u7565<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">\\u30b3\\u30df\\u30e5\\u30cb\\u30c6\\u30a3\\u30d6\\u30ed\\u30b0<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">\\u5831\\u916c<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">\\u3068\\u9023\\u643a<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">\\u30c1\\u30fc\\u30e0\\u306b\\u4f1a\\u3046<\\/a><\\/li>\\r\\n<\\/ul>\"},{\"title\":\"\\u30b5\\u30dd\\u30fc\\u30c8\",\"size\":\"3\",\"content\":\"<ul>\\r\\n    <li><a href=\\\"#\\\">\\u30a2\\u30ab\\u30a6\\u30f3\\u30c8<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">\\u6cd5\\u7684<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">\\u63a5\\u89e6<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">\\u30a2\\u30d5\\u30a3\\u30ea\\u30a8\\u30a4\\u30c8\\u30d7\\u30ed\\u30b0\\u30e9\\u30e0<\\/a><\\/li>\\r\\n    <li><a href=\\\"#\\\">\\u500b\\u4eba\\u60c5\\u5831\\u4fdd\\u8b77\\u65b9\\u91dd<\\/a><\\/li>\\r\\n<\\/ul>\"},{\"title\":\"\\u8a2d\\u5b9a\",\"size\":\"3\",\"content\":\"<ul>\\r\\n<li><a href=\\\"#\\\">\\u8a2d\\u5b9a1<\\/a><\\/li>\\r\\n<li><a href=\\\"#\\\">\\u8a2d\\u5b9a2<\\/a><\\/li>\\r\\n<\\/ul>\"}]',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(15,'page_contact_title',NULL,'We\'d love to hear from you',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(16,'page_contact_sub_title',NULL,'Send us a message and we\'ll respond as soon as possible',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(17,'page_contact_desc',NULL,'<h3>Booking2</h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>Tell. + 001234567898</p>\r\n<p>Email. hello@yoursite.com</p>\r\n<p>1355 Market St, Suite 900San, Francisco, CA 94103 United States</p>',NULL,1,1,NULL,'2023-03-23 08:49:25','2024-08-13 04:31:14'),
(18,'page_contact_image',NULL,'9',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(19,'api_app_layout',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(20,'home_page_id',NULL,'1',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(21,'page_contact_title_ja',NULL,'あなたからの御一報をお待ち',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(22,'page_contact_sub_title_ja',NULL,'私たちにメッセージを送ってください、私たちはできるだ',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(23,'currency_main',NULL,'inr',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-03-23 15:51:21'),
(24,'currency_format',NULL,'left',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-03-23 15:51:21'),
(25,'currency_decimal',NULL,',',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-03-23 15:51:21'),
(26,'currency_thousand',NULL,'.',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-03-23 15:51:21'),
(27,'currency_no_decimal',NULL,'0',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-03-23 15:51:21'),
(28,'extra_currency',NULL,'',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-03-23 15:51:21'),
(29,'map_provider',NULL,'gmap',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(30,'map_gmap_key',NULL,'',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(31,'g_offline_payment_enable',NULL,'1',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-03-23 15:51:21'),
(32,'g_offline_payment_name',NULL,'Offline Payment',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-03-23 15:51:21'),
(33,'date_format',NULL,'m/d/Y',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(34,'site_title',NULL,'Booking2',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(35,'site_timezone',NULL,'Asia/Kolkata',NULL,1,1,NULL,'2023-03-23 08:49:25','2023-09-18 05:39:36'),
(36,'email_header',NULL,'<h1 class=\"site-title\" style=\"text-align: center\">Booking Core</h1>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(37,'email_footer',NULL,'<p class=\"\" style=\"text-align: center\">&copy; 2019 Booking Core. All rights reserved</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(38,'enable_mail_user_registered',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(39,'user_content_email_registered',NULL,'<h1 style=\"text-align: center\">Welcome!</h1>\r\n                    <h3>Hello [first_name] [last_name]</h3>\r\n                    <p>Thank you for signing up with Booking Core! We hope you enjoy your time with us.</p>\r\n                    <p>Regards,</p>\r\n                    <p>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(40,'admin_enable_mail_user_registered',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(41,'admin_content_email_user_registered',NULL,'<h3>Hello Administrator</h3>\r\n                    <p>We have new registration</p>\r\n                    <p>Full name: [first_name] [last_name]</p>\r\n                    <p>Email: [email]</p>\r\n                    <p>Regards,</p>\r\n                    <p>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(42,'user_content_email_forget_password',NULL,'<h1>Hello!</h1>\r\n                    <p>You are receiving this email because we received a password reset request for your account.</p>\r\n                    <p style=\"text-align: center\">[button_reset_password]</p>\r\n                    <p>This password reset link expire in 60 minutes.</p>\r\n                    <p>If you did not request a password reset, no further action is required.\r\n                    </p>\r\n                    <p>Regards,</p>\r\n                    <p>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(43,'email_driver',NULL,'log',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(44,'email_host',NULL,'smtp.mailgun.org',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(45,'email_port',NULL,'587',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(46,'email_encryption',NULL,'tls',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(47,'email_username',NULL,'',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(48,'email_password',NULL,'',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(49,'email_mailgun_domain',NULL,'',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(50,'email_mailgun_secret',NULL,'',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(51,'email_mailgun_endpoint',NULL,'api.mailgun.net',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(52,'email_postmark_token',NULL,'',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(53,'email_ses_key',NULL,'',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(54,'email_ses_secret',NULL,'',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(55,'email_ses_region',NULL,'us-east-1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(56,'email_sparkpost_secret',NULL,'',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(57,'booking_enquiry_for_hotel',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(58,'booking_enquiry_type_hotel',NULL,'booking_and_enquiry',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(59,'booking_enquiry_for_tour',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(60,'booking_enquiry_type_tour',NULL,'booking_and_enquiry',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(61,'booking_enquiry_for_space',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(62,'booking_enquiry_type_space',NULL,'booking_and_enquiry',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(63,'booking_enquiry_for_car',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(64,'booking_enquiry_type_car',NULL,'booking_and_enquiry',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(65,'booking_enquiry_for_event',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(66,'booking_enquiry_type_event',NULL,'booking_and_enquiry',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(67,'booking_enquiry_for_boat',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(68,'booking_enquiry_type_boat',NULL,'booking_and_enquiry',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(69,'booking_enquiry_enable_mail_to_vendor',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(70,'booking_enquiry_mail_to_vendor_content',NULL,'<h3>Hello [vendor_name]</h3>\r\n                            <p>You get new inquiry request from [email]</p>\r\n                            <p>Name :[name]</p>\r\n                            <p>Emai:[email]</p>\r\n                            <p>Phone:[phone]</p>\r\n                            <p>Content:[note]</p>\r\n                            <p>Service:[service_link]</p>\r\n                            <p>Regards,</p>\r\n                            <p>Booking Core</p>\r\n                            </div>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(71,'booking_enquiry_enable_mail_to_admin',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(72,'booking_enquiry_mail_to_admin_content',NULL,'<h3>Hello Administrator</h3>\r\n                            <p>You get new inquiry request from [email]</p>\r\n                            <p>Name :[name]</p>\r\n                            <p>Emai:[email]</p>\r\n                            <p>Phone:[phone]</p>\r\n                            <p>Content:[note]</p>\r\n                            <p>Service:[service_link]</p>\r\n                            <p>Vendor:[vendor_link]</p>\r\n                            <p>Regards,</p>\r\n                            <p>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(73,'vendor_enable',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(74,'vendor_commission_type',NULL,'percent',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(75,'vendor_commission_amount',NULL,'10',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(76,'vendor_role',NULL,'2',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(77,'role_verify_fields',NULL,'{\"phone\":{\"name\":\"Phone\",\"type\":\"text\",\"roles\":[\"1\",\"2\",\"3\"],\"required\":null,\"order\":null,\"icon\":\"fa fa-phone\"},\"id_card\":{\"name\":\"ID Card\",\"type\":\"file\",\"roles\":[\"1\",\"2\",\"3\"],\"required\":\"1\",\"order\":\"0\",\"icon\":\"fa fa-id-card\"},\"trade_license\":{\"name\":\"Trade License\",\"type\":\"multi_files\",\"roles\":[\"1\",\"3\"],\"required\":\"1\",\"order\":\"0\",\"icon\":\"fa fa-copyright\"}}',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(78,'vendor_show_email',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(79,'vendor_show_phone',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(80,'enable_mail_vendor_registered',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(81,'vendor_content_email_registered',NULL,'<h1 style=\"text-align: center;\">Welcome!</h1>\r\n                            <h3>Hello [first_name] [last_name]</h3>\r\n                            <p>Thank you for signing up with Booking Core! We hope you enjoy your time with us.</p>\r\n                            <p>Regards,</p>\r\n                            <p>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(82,'admin_enable_mail_vendor_registered',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(83,'admin_content_email_vendor_registered',NULL,'<h3>Hello Administrator</h3>\r\n                            <p>An user has been registered as Vendor. Please check the information bellow:</p>\r\n                            <p>Full name: [first_name] [last_name]</p>\r\n                            <p>Email: [email]</p>\r\n                            <p>Registration date: [created_at]</p>\r\n                            <p>You can approved the request here: [link_approved]</p>\r\n                            <p>Regards,</p>\r\n                            <p>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(84,'cookie_agreement_enable',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(85,'cookie_agreement_button_text',NULL,'Got it',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(86,'cookie_agreement_content',NULL,'<p>This website requires cookies to provide all of its features. By using our website, you agree to our use of cookies. <a href=\'#\'>More info</a></p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(87,'logo_invoice_id',NULL,'8',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(88,'invoice_company_info',NULL,'<p><span style=\"font-size: 14pt;\"><strong>Booking Core Company</strong></span></p>\r\n                                <p>Ha Noi, Viet Nam</p>\r\n                                <p>www.bookingcore.org</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(89,'user_role',NULL,'3',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(90,'vendor_team_enable',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(91,'user_plans_enable',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(92,'news_page_list_title','news','News',NULL,NULL,NULL,NULL,NULL,NULL),
(93,'news_page_list_banner','news','122',NULL,NULL,NULL,NULL,NULL,NULL),
(94,'news_sidebar','news','[{\"title\":null,\"content\":null,\"type\":\"search_form\"},{\"title\":\"About Us\",\"content\":\"Nam dapibus nisl vitae elit fringilla rutrum. Aenean sollicitudin, erat a elementum rutrum, neque sem pretium metus, quis mollis nisl nunc et massa\",\"type\":\"content_text\"},{\"title\":\"Recent News\",\"content\":null,\"type\":\"recent_news\"},{\"title\":\"Categories\",\"content\":null,\"type\":\"category\"},{\"title\":\"Tags\",\"content\":null,\"type\":\"tag\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(95,'tour_page_search_title','tour','Search for tour',NULL,NULL,NULL,NULL,NULL,NULL),
(96,'tour_page_limit_item','tour','9',NULL,NULL,NULL,NULL,NULL,NULL),
(97,'tour_page_search_banner','tour','20',NULL,NULL,NULL,NULL,NULL,NULL),
(98,'tour_layout_search','tour','normal',NULL,NULL,NULL,NULL,NULL,NULL),
(99,'tour_enable_review','tour','1',NULL,NULL,NULL,NULL,NULL,NULL),
(100,'tour_review_approved','tour','0',NULL,NULL,NULL,NULL,NULL,NULL),
(101,'tour_review_stats','tour','[{\"title\":\"Service\"},{\"title\":\"Organization\"},{\"title\":\"Friendliness\"},{\"title\":\"Area Expert\"},{\"title\":\"Safety\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(102,'tour_booking_buyer_fees','tour','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(103,'tour_map_search_fields','tour','[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"category\",\"attr\":null,\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(104,'tour_search_fields','tour','[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"6\",\"position\":\"1\"},{\"title\":\"From - To\",\"field\":\"date\",\"size\":\"6\",\"position\":\"2\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(105,'space_page_search_title','space','Search for space',NULL,NULL,NULL,NULL,NULL,NULL),
(106,'space_page_limit_item','space','9',NULL,NULL,NULL,NULL,NULL,NULL),
(107,'space_page_search_banner','space','62',NULL,NULL,NULL,NULL,NULL,NULL),
(108,'space_layout_search','space','normal',NULL,NULL,NULL,NULL,NULL,NULL),
(109,'space_enable_review','space','1',NULL,NULL,NULL,NULL,NULL,NULL),
(110,'space_review_approved','space','0',NULL,NULL,NULL,NULL,NULL,NULL),
(111,'space_review_stats','space','[{\"title\":\"Sleep\"},{\"title\":\"Location\"},{\"title\":\"Service\"},{\"title\":\"Clearness\"},{\"title\":\"Rooms\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(112,'space_booking_buyer_fees','space','[{\"name\":\"Cleaning fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(113,'space_map_search_fields','space','[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"attr\",\"attr\":\"3\",\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(114,'space_search_fields','tour','[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"4\",\"position\":\"1\"},{\"title\":\"From - To\",\"field\":\"date\",\"size\":\"4\",\"position\":\"2\"},{\"title\":\"Guests\",\"field\":\"guests\",\"size\":\"4\",\"position\":\"3\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(115,'hotel_page_search_title','hotel','Search for hotel',NULL,NULL,NULL,NULL,NULL,NULL),
(116,'hotel_page_limit_item','hotel','9',NULL,NULL,NULL,NULL,NULL,NULL),
(117,'hotel_page_search_banner','hotel','92',NULL,NULL,NULL,NULL,NULL,NULL),
(118,'hotel_layout_item_search','hotel','list',NULL,NULL,NULL,NULL,NULL,NULL),
(119,'hotel_attribute_show_in_listing_page','hotel','6',NULL,NULL,NULL,NULL,NULL,NULL),
(120,'hotel_layout_search','hotel','normal',NULL,NULL,NULL,NULL,NULL,NULL),
(121,'hotel_enable_review','hotel','1',NULL,NULL,NULL,NULL,NULL,NULL),
(122,'hotel_review_approved','hotel','0',NULL,NULL,NULL,NULL,NULL,NULL),
(123,'hotel_review_stats','hotel','[{\"title\":\"Service\"},{\"title\":\"Organization\"},{\"title\":\"Friendliness\"},{\"title\":\"Area Expert\"},{\"title\":\"Safety\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(124,'hotel_booking_buyer_fees','hotel','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(125,'hotel_map_search_fields','hotel','[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"attr\",\"attr\":\"7\",\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(126,'hotel_search_fields','hotel','[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"4\",\"position\":\"1\"},{\"title\":\"Check In - Out\",\"field\":\"date\",\"size\":\"4\",\"position\":\"2\"},{\"title\":\"Guests\",\"field\":\"guests\",\"size\":\"4\",\"position\":\"3\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(127,'car_page_search_title','car','Search for car',NULL,NULL,NULL,NULL,NULL,NULL),
(128,'car_page_limit_item','car','9',NULL,NULL,NULL,NULL,NULL,NULL),
(129,'car_page_search_banner','car','62',NULL,NULL,NULL,NULL,NULL,NULL),
(130,'car_layout_search','car','normal',NULL,NULL,NULL,NULL,NULL,NULL),
(131,'car_enable_review','car','1',NULL,NULL,NULL,NULL,NULL,NULL),
(132,'car_review_approved','car','0',NULL,NULL,NULL,NULL,NULL,NULL),
(133,'car_review_stats','car','[{\"title\":\"Equipment\"},{\"title\":\"Comfortable\"},{\"title\":\"Climate Control\"},{\"title\":\"Facility\"},{\"title\":\"Aftercare\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(134,'car_booking_buyer_fees','car','[{\"name\":\"Equipment fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Facility fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(135,'car_map_search_fields','car','[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"attr\",\"attr\":\"9\",\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(136,'car_search_fields','car','[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"6\",\"position\":\"1\"},{\"title\":\"From - To\",\"field\":\"date\",\"size\":\"6\",\"position\":\"2\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(137,'event_page_search_title','event','Search for event',NULL,NULL,NULL,NULL,NULL,NULL),
(138,'event_page_limit_item','event','9',NULL,NULL,NULL,NULL,NULL,NULL),
(139,'event_page_search_banner','event','162',NULL,NULL,NULL,NULL,NULL,NULL),
(140,'event_layout_search','event','normal',NULL,NULL,NULL,NULL,NULL,NULL),
(141,'event_enable_review','event','1',NULL,NULL,NULL,NULL,NULL,NULL),
(142,'event_review_approved','event','0',NULL,NULL,NULL,NULL,NULL,NULL),
(143,'event_review_stats','event','[{\"title\":\"Service\"},{\"title\":\"Organization\"},{\"title\":\"Friendliness\"},{\"title\":\"Area Expert\"},{\"title\":\"Safety\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(144,'event_booking_buyer_fees','event','[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(145,'event_map_search_fields','event','[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"category\",\"attr\":null,\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(146,'event_search_fields','event','[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"6\",\"position\":\"1\"},{\"title\":\"From - To\",\"field\":\"date\",\"size\":\"6\",\"position\":\"2\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(147,'flight_page_search_title','flight','Search for flight',NULL,NULL,NULL,NULL,NULL,NULL),
(148,'flight_page_limit_item','flight','9',NULL,NULL,NULL,NULL,NULL,NULL),
(149,'flight_page_search_banner','flight','202',NULL,NULL,NULL,NULL,NULL,NULL),
(150,'flight_layout_search','flight','normal',NULL,NULL,NULL,NULL,NULL,NULL),
(151,'flight_enable_review','flight','0',NULL,NULL,NULL,NULL,NULL,NULL),
(152,'flight_review_approved','flight','0',NULL,NULL,NULL,NULL,NULL,NULL),
(153,'flight_review_stats','flight','',NULL,NULL,NULL,NULL,NULL,NULL),
(154,'flight_booking_buyer_fees','flight','',NULL,NULL,NULL,NULL,NULL,NULL),
(155,'flight_map_search_fields','flight','',NULL,NULL,NULL,NULL,NULL,NULL),
(156,'flight_search_fields','flight','[{\"title\":\"From where\",\"title_ja\":null,\"title_egy\":null,\"field\":\"from_where\",\"size\":\"3\",\"position\":\"1\"},{\"title\":\"To where\",\"title_ja\":null,\"title_egy\":null,\"field\":\"to_where\",\"size\":\"3\",\"position\":\"2\"},{\"title\":\"Depart\",\"title_ja\":null,\"title_egy\":null,\"field\":\"date\",\"size\":\"3\",\"position\":\"3\"},{\"title\":\"Travelers\",\"title_ja\":null,\"title_egy\":null,\"field\":\"seat_type\",\"size\":\"3\",\"position\":\"4\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(157,'boat_page_search_title','boat','Search for boat',NULL,NULL,NULL,NULL,NULL,NULL),
(158,'boat_page_limit_item','boat','9',NULL,NULL,NULL,NULL,NULL,NULL),
(159,'boat_page_search_banner','boat','207',NULL,NULL,NULL,NULL,NULL,NULL),
(160,'boat_layout_search','boat','normal',NULL,NULL,NULL,NULL,NULL,NULL),
(161,'boat_enable_review','boat','1',NULL,NULL,NULL,NULL,NULL,NULL),
(162,'boat_review_approved','boat','0',NULL,NULL,NULL,NULL,NULL,NULL),
(163,'boat_review_stats','boat','[{\"title\":\"Equipment\"},{\"title\":\"Comfortable\"},{\"title\":\"Climate Control\"},{\"title\":\"Facility\"},{\"title\":\"Aftercare\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(164,'boat_booking_buyer_fees','boat','[{\"name\":\"Equipment fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Facility fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(165,'boat_map_search_fields','boat','[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"attr\",\"attr\":\"14\",\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(166,'boat_search_fields','boat','[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"6\",\"position\":\"1\"},{\"title\":\"Start Date\",\"field\":\"date\",\"size\":\"6\",\"position\":\"2\"}]',NULL,NULL,NULL,NULL,NULL,NULL),
(167,'update_to_110',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:35','2023-03-23 08:49:35'),
(168,'update_to_120',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:35','2023-03-23 08:49:35'),
(169,'update_to_130',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:35','2023-03-23 08:49:35'),
(170,'update_to_140',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:35','2023-03-23 08:49:35'),
(171,'update_to_150',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:35','2023-03-23 08:49:35'),
(172,'update_to_151',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(173,'update_to_160',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(174,'booking_enquiry_enable_mail_to_vendor_content','enquiry','<h3>Hello [vendor_name]</h3>\r\n                        <p>You get new inquiry request from [email]</p>\r\n                        <p>Name :[name]</p>\r\n                        <p>Emai:[email]</p>\r\n                        <p>Phone:[phone]</p>\r\n                        <p>Content:[note]</p>\r\n                        <p>Service:[service_link]</p>\r\n                        <p>Regards,</p>\r\n                        <p>Booking Core</p>\r\n                        </div>',NULL,NULL,NULL,NULL,NULL,NULL),
(175,'booking_enquiry_enable_mail_to_admin_content','enquiry','<h3>Hello Administrator</h3>\r\n                        <p>You get new inquiry request from [email]</p>\r\n                        <p>Name :[name]</p>\r\n                        <p>Emai:[email]</p>\r\n                        <p>Phone:[phone]</p>\r\n                        <p>Content:[note]</p>\r\n                        <p>Service:[service_link]</p>\r\n                        <p>Vendor:[vendor_link]</p>\r\n                        <p>Regards,</p>\r\n                        <p>Booking Core</p>',NULL,NULL,NULL,NULL,NULL,NULL),
(176,'update_to_170',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(177,'wallet_credit_exchange_rate',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(178,'wallet_deposit_rate',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(179,'wallet_deposit_type',NULL,'list',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(180,'wallet_deposit_lists',NULL,'[{\"name\":\"100$\",\"amount\":100,\"credit\":100},{\"name\":\"Bonus 10%\",\"amount\":500,\"credit\":550},{\"name\":\"Bonus 15%\",\"amount\":1000,\"credit\":1150}]',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(181,'wallet_new_deposit_admin_subject',NULL,'New credit purchase',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(182,'wallet_new_deposit_admin_content',NULL,'\r\n            <h1>Hello [first_name]!</h1>\r\n            <p>New order has been made:</p>\r\n            <p>User ID: [create_user]</p>\r\n            <p>Amount: [amount]</p>\r\n            <p>Credit: [credit]</p>\r\n            <p>Gateway: [payment_gateway]</p>\r\n            <p>Regards,<br>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(183,'wallet_new_deposit_customer_subject',NULL,'Thank you for your purchasing',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(184,'wallet_new_deposit_customer_content',NULL,'\r\n            <h1>Hello [first_name]!</h1>\r\n            <p>New order has been made:</p>\r\n            <p>User ID: [create_user]</p>\r\n            <p>Amount: [amount]</p>\r\n            <p>Credit: [credit]</p>\r\n            <p>Gateway: [payment_gateway]</p>\r\n            <p>Regards,<br>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(185,'wallet_update_deposit_admin_subject',NULL,'Credit purchase updated',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(186,'wallet_update_deposit_admin_content',NULL,'\r\n            <h1>Hello [first_name]!</h1>\r\n            <p>Order has been updated:</p>\r\n            <p>Order Status: <strong>[status_name]</strong></p>\r\n            <p>User ID: [create_user]</p>\r\n            <p>Amount: [amount]</p>\r\n            <p>Credit: [credit]</p>\r\n            <p>Gateway: [payment_gateway]</p>\r\n            <p>Regards,<br>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(187,'wallet_update_deposit_customer_subject',NULL,'Your credit purchase updated',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(188,'wallet_update_deposit_customer_content',NULL,'\r\n            <h1>Hello [first_name]!</h1>\r\n            <p>Order has been updated:</p>\r\n            <p>Order Status: <strong>[status_name]</strong></p>\r\n            <p>User ID: [create_user]</p>\r\n            <p>Amount: [amount]</p>\r\n            <p>Credit: [credit]</p>\r\n            <p>Gateway: [payment_gateway]</p>\r\n            <p>Regards,<br>Booking Core</p>',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(189,'update_to_182',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(190,'update_to_190',NULL,'1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(191,'update_to_200',NULL,'2.0.9',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(192,'update_to_210',NULL,'2.1.0',NULL,NULL,NULL,NULL,'2023-03-23 08:49:36','2023-03-23 08:49:36'),
(193,'search_open_tab',NULL,'current_tab',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(194,'map_clustering',NULL,'on',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(195,'map_fit_bounds',NULL,'on',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(196,'update_to_220',NULL,'2.2.0.1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(197,'update_to_230',NULL,'2.3.0',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(198,'update_to_240',NULL,'1.0.6',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(199,'user_plans_page_title',NULL,'Pricing Packages',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(200,'user_plans_page_sub_title',NULL,'Choose your pricing plan',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(201,'user_plans_sale_text',NULL,'Save up to 10%',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(202,'update_to_250',NULL,'1.5.5',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(203,'update_to_300',NULL,'1.4',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(204,'update_to_310',NULL,'1.1',NULL,NULL,NULL,NULL,'2023-03-23 08:49:37','2023-03-23 08:49:37'),
(205,'site_desc',NULL,'',NULL,1,1,NULL,'2023-03-23 10:13:46','2023-09-18 05:39:36'),
(206,'site_first_day_of_the_weekin_calendar',NULL,'1',NULL,1,1,NULL,'2023-03-23 10:13:46','2023-09-18 05:39:36'),
(207,'enable_rtl',NULL,'',NULL,1,1,NULL,'2023-03-23 10:13:46','2023-09-18 05:39:36'),
(208,'home_hotel_id',NULL,'',NULL,1,1,NULL,'2023-03-23 10:13:46','2023-09-18 05:39:36'),
(209,'g_offline_payment_name_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(210,'g_offline_payment_name_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(211,'g_offline_payment_logo_id',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(212,'g_offline_payment_payment_note',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(213,'g_offline_payment_payment_note_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(214,'g_offline_payment_payment_note_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(215,'g_offline_payment_html',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(216,'g_offline_payment_html_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(217,'g_offline_payment_html_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(218,'g_paypal_enable',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(219,'g_paypal_name',NULL,'Paypal',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(220,'g_paypal_name_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(221,'g_paypal_name_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(222,'g_paypal_logo_id',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(223,'g_paypal_html',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(224,'g_paypal_html_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(225,'g_paypal_html_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(226,'g_paypal_test',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(227,'g_paypal_convert_to',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(228,'g_paypal_exchange_rate',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(229,'g_paypal_test_account',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(230,'g_paypal_test_client_id',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(231,'g_paypal_test_client_secret',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(232,'g_paypal_account',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(233,'g_paypal_client_id',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(234,'g_paypal_client_secret',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(235,'g_stripe_enable',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(236,'g_stripe_name',NULL,'Stripe',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(237,'g_stripe_name_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(238,'g_stripe_name_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(239,'g_stripe_logo_id',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(240,'g_stripe_html',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(241,'g_stripe_html_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(242,'g_stripe_html_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(243,'g_stripe_stripe_secret_key',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(244,'g_stripe_stripe_publishable_key',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(245,'g_stripe_stripe_enable_sandbox',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(246,'g_stripe_stripe_test_secret_key',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(247,'g_stripe_stripe_test_publishable_key',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(248,'g_stripe_endpoint_secret',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(249,'g_payrexx_enable',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(250,'g_payrexx_name',NULL,'Payrexx Checkout',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(251,'g_payrexx_name_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(252,'g_payrexx_name_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(253,'g_payrexx_logo_id',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(254,'g_payrexx_html',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(255,'g_payrexx_html_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(256,'g_payrexx_html_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(257,'g_payrexx_instance_name',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(258,'g_payrexx_api_secret_key',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(259,'g_two_checkout_gateway_enable',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(260,'g_two_checkout_gateway_name',NULL,'Two Checkout',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(261,'g_two_checkout_gateway_name_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(262,'g_two_checkout_gateway_name_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(263,'g_two_checkout_gateway_logo_id',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(264,'g_two_checkout_gateway_html',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(265,'g_two_checkout_gateway_html_ja',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(266,'g_two_checkout_gateway_html_egy',NULL,'',NULL,1,NULL,NULL,'2023-03-23 15:44:14','2023-03-23 15:44:14'),
(267,'g_two_checkout_gateway_twocheckout_account_number',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(268,'g_two_checkout_gateway_twocheckout_secret_word',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(269,'g_two_checkout_gateway_twocheckout_enable_sandbox',NULL,'',NULL,1,1,NULL,'2023-03-23 15:44:14','2023-03-23 15:51:21'),
(270,'g_razorpay_gateway_enable',NULL,'1',NULL,1,1,NULL,'2023-03-23 15:51:21','2024-12-31 19:15:47'),
(271,'g_razorpay_gateway_name',NULL,'Razorpay Checkout',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(272,'g_razorpay_gateway_logo_id',NULL,'',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(273,'g_razorpay_gateway_convert_to',NULL,'INR',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(274,'g_razorpay_gateway_exchange_rate',NULL,'',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(275,'g_razorpay_gateway_html',NULL,'',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(276,'g_razorpay_gateway_razorpay_key_id',NULL,'rzp_test_IfqJZljs6c3VTG',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(277,'g_razorpay_gateway_razorpay_key_secret',NULL,'hr0ad3rNorXzDTRkJbbRj46q',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(278,'g_razorpay_gateway_razorpay_enable_sandbox',NULL,'',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(279,'g_razorpay_gateway_razorpay_test_key_id',NULL,'rzp_test_IfqJZljs6c3VTG',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(280,'g_razorpay_gateway_razorpay_test_key_secret',NULL,'hr0ad3rNorXzDTRkJbbRj46q',NULL,1,1,NULL,'2023-03-23 15:51:21','2023-03-23 15:54:35'),
(281,'site_locale','general','en',NULL,NULL,NULL,NULL,NULL,NULL),
(282,'site_enable_multi_lang','general','1',NULL,NULL,NULL,NULL,NULL,NULL),
(283,'enable_rtl_egy','general','1',NULL,NULL,NULL,NULL,NULL,NULL),
(284,'site_locale','general','en',NULL,NULL,NULL,NULL,NULL,NULL),
(285,'site_enable_multi_lang','general','1',NULL,NULL,NULL,NULL,NULL,NULL),
(286,'enable_rtl_egy','general','1',NULL,NULL,NULL,NULL,NULL,NULL),
(287,'site_locale','general','en',NULL,NULL,NULL,NULL,NULL,NULL),
(288,'site_enable_multi_lang','general','1',NULL,NULL,NULL,NULL,NULL,NULL),
(289,'enable_rtl_egy','general','1',NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `core_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_subscribers`
--

DROP TABLE IF EXISTS `core_subscribers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_subscribers` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(255) DEFAULT NULL,
  `first_name` varchar(255) DEFAULT NULL,
  `last_name` varchar(255) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_subscribers`
--

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

--
-- Table structure for table `core_tag_translations`
--

DROP TABLE IF EXISTS `core_tag_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_tag_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `core_tag_translations_locale_index` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_tag_translations`
--

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

--
-- Table structure for table `core_tags`
--

DROP TABLE IF EXISTS `core_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_tags` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `content` varchar(255) DEFAULT NULL,
  `create_user` varchar(255) DEFAULT NULL,
  `update_user` varchar(255) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_tags`
--

LOCK TABLES `core_tags` WRITE;
/*!40000 ALTER TABLE `core_tags` DISABLE KEYS */;
INSERT INTO `core_tags` (`id`, `name`, `slug`, `content`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1,'park','park',NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(2,'National park','national-park',NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(3,'Moutain','moutain',NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(4,'Travel','travel',NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(5,'Summer','summer',NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25'),
(6,'Walking','walking',NULL,NULL,NULL,NULL,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25');
/*!40000 ALTER TABLE `core_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_template_translations`
--

DROP TABLE IF EXISTS `core_template_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_template_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` int(10) unsigned NOT NULL,
  `locale` varchar(191) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `core_template_translations_locale_index` (`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_template_translations`
--

LOCK TABLES `core_template_translations` WRITE;
/*!40000 ALTER TABLE `core_template_translations` DISABLE KEYS */;
INSERT INTO `core_template_translations` (`id`, `origin_id`, `locale`, `title`, `content`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,1,'ja','Home Page','[{\"type\":\"form_search_all_service\",\"name\":\"Form Search All Service\",\"model\":{\"service_types\":[\"hotel\",\"space\",\"tour\",\"car\",\"event\",\"flight\",\"boat\"],\"title\":\"こんにちは！\",\"sub_title\":\"どこに行きたい？\",\"bg_image\":16},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"offer_block\",\"name\":\"Offer Block\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"特別オファー\",\"desc\":\"最適なホテルを探す<br>\\n20,000以上の物件の価格<br>\\n上の最高の価格\",\"background_image\":17,\"link_title\":\"取引\",\"link_more\":\"#\",\"featured_text\":\"ホリデーセール\"},{\"_active\":true,\"title\":\"ニュースレター\",\"desc\":\"無料で参加して取得 <br>\\nに合わせたニュースレター<br>\\nホット旅行情報。\",\"background_image\":18,\"link_title\":\"サインアップ\",\"link_more\":\"/register\",\"featured_icon\":\"icofont-email\"},{\"_active\":true,\"title\":\"旅行のヒント\",\"desc\":\"旅行の専門家からのヒント <br>\\nあなたの次の<br>\\nより良い。\",\"background_image\":19,\"link_title\":\"サインアップ\",\"link_more\":\"/register\",\"featured_text\":null,\"featured_icon\":\"icofont-island-alt\"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"ベストセラーリスト\",\"desc\":\"思慮深いデザインで高い評価を得ているホテル\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":[\"space\",\"hotel\",\"tour\"],\"title\":\"人気の目的地\",\"desc\":\"読者が\",\"number\":6,\"layout\":\"style_4\",\"order\":\"id\",\"order_by\":\"asc\",\"to_location_detail\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"最高のプロモーションツアー\",\"number\":6,\"style\":\"box_shadow\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\",\"desc\":\"最も人気のある目的地\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"賃貸物件\",\"desc\":\"思慮深いデザインで高い評価を受けている家\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_car\",\"name\":\"Car: List Items\",\"model\":{\"title\":\"Car Trending\",\"desc\":\"Book incredible things to do around the world.\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true},{\"type\":\"list_boat\",\"name\":\"Boat: List Items\",\"model\":{\"title\":\"Boat Listing\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\",\"custom_ids\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\": \"list_news\", \"name\": \"News: List Items\", \"model\": {\"title\": \"Read the latest from blog\", \"desc\": \"Contrary to popular belief\", \"number\": 6, \"category_id\": null, \"order\": \"id\", \"order_by\": \"asc\"}, \"component\": \"RegularBlock\", \"open\": true, \"is_container\": false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"あなたの街を知？\",\"sub_title\":\"3000以上の都市から2000人以上の地元民と\",\"link_title\":\"ローカルエ\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"testimonial\",\"name\":\"List Testimonial\",\"model\":{\"title\":\"私たちの幸せなクライアント\",\"list_item\":[{\"_active\":false,\"name\":\"Eva Hicks\",\"desc\":\"右ずへやん間申ゃ投法けゃイ仙一もと政情ルた食的て代下ずせに丈律ルラモト聞探チト棋90績ム的社ず置攻景リフノケ内兼唱堅ゃフぼ。場ルアハ美\",\"number_star\":5,\"avatar\":1},{\"_active\":false,\"name\":\"Donald Wolf\",\"desc\":\"右ずへやん間申ゃ投法けゃイ仙一もと政情ルた食的て代下ずせに丈律ルラモト聞探チト棋90績ム的社ず置攻景リフノケ内兼唱堅ゃフぼ。場ルアハ美\",\"number_star\":6,\"avatar\":2},{\"_active\":true,\"name\":\"Charlie Harrington\",\"desc\":\"右ずへやん間申ゃ投法けゃイ仙一もと政情ルた食的て代下ずせに丈律ルラモト聞探チト棋90績ム的社ず置攻景リフノケ内兼唱堅ゃフぼ。場ルアハ美\",\"number_star\":5,\"avatar\":3}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',1,NULL,'2023-03-23 08:49:25',NULL),
(2,2,'ja','Home Tour','[{\"type\":\"form_search_tour\",\"name\":\"Tour: Form Search\",\"model\":{\"title\":\"どこへ行くのが大好き\",\"sub_title\":\"世界中で信じられないようなことを予約しましょう。\",\"bg_image\":20},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"1,000+ ローカルガイド\",\"sub_title\":\"プロのツアーガイドとーガイドとーガイドと 験。 光の\",\"icon_image\":5},{\"_active\":true,\"title\":\"手作りの体験\",\"sub_title\":\"プロのツアーガイドとーガイドとーガイドと 験。 光の\",\"icon_image\":4},{\"_active\":true,\"title\":\"96% 幸せな旅行者\",\"sub_title\":\"プロのツアーガイドとーガイドとーガイドと 験。 光の\",\"icon_image\":6}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"トレンドツアー\",\"number\":5,\"style\":\"carousel\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"title\":\"人気の目的地\",\"number\":5,\"order\":\"id\",\"order_by\":\"desc\",\"service_type\":\"tour\",\"desc\":\"\",\"layout\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"あなたが好きになるローカル体験\",\"number\":8,\"style\":\"normal\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"っていますか？\",\"sub_title\":\"3000以上の都市から2000人以上の地元民と1200人以上の貢献者に参加する\",\"link_title\":\"ローカルエ\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"testimonial\",\"name\":\"List Testimonial\",\"model\":{\"title\":\"私たちの幸せなクライアント\",\"list_item\":[{\"_active\":false,\"name\":\"Eva Hicks\",\"desc\":\"融づ苦佐とき百配ほづあ禁安テクミ真覧チヱフ行乗ぱたば外味ナ演庭コヲ旅見ヨコ優成コネ治確はろね訪来終島抄がん。\",\"number_star\":5,\"avatar\":1},{\"_active\":false,\"name\":\"Donald Wolf\",\"desc\":\"融づ苦佐とき百配ほづあ禁安テクミ真覧チヱフ行乗ぱたば外味ナ演庭コヲ旅見ヨコ優成コネ治確はろね訪来終島抄がん。\",\"number_star\":6,\"avatar\":2},{\"_active\":true,\"name\":\"Charlie Harrington\",\"desc\":\"右ずへやん間申ゃ投法けゃイ仙一もと政情ルた食的て代下ずせに丈律ルラモト聞探チト棋90績ム的社ず置攻景リフノケ内兼唱堅ゃフぼ。場ルアハ美\",\"number_star\":5,\"avatar\":3}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',1,NULL,'2023-03-23 08:49:25',NULL),
(3,3,'ja','Home Space','[{\"type\":\"form_search_space\",\"name\":\"Space: Form Search\",\"model\":{\"title\":\"次のレンタルを探す\",\"sub_title\":\"世界中で信じられないようなことを予約しましょう。\",\"bg_image\":61},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"おすすめの家\",\"number\":5,\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"desc\":\"思慮深いデザインで高い評価を受けている家\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"space_term_featured_box\",\"name\":\"Space: Term Featured Box\",\"model\":{\"title\":\"ホームタイプを見つける\",\"desc\":\"これは、読者はその長い既成の事実であります\",\"term_space\":[\"26\",\"27\",\"28\",\"29\",\"30\",\"31\"]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":\"space\",\"title\":\"人気の目的地\",\"number\":6,\"order\":\"id\",\"order_by\":\"desc\",\"layout\":\"style_2\",\"desc\":\"これは、読者はその長い既成の事実であります\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"賃貸物件\",\"desc\":\"思慮深いデザインで高い評価を受けている家\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"っていますか？\",\"sub_title\":\"3000以上の都市から2000人以上の地元民と1200人以上の貢献者に参加する\",\"link_title\":\"ローカルエ\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',1,NULL,'2023-03-23 08:49:25',NULL),
(4,4,'ja','Home Hotel','[{\"type\":\"form_search_hotel\",\"name\":\"Hotel: Form Search\",\"model\":{\"title\":\"最適なホテルを探す\",\"sub_title\":\"20,000以上のプロパティで最高の価格を取得\",\"bg_image\":92},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"20,000以上のプロパティ\",\"sub_title\":\"これは飢饉は常にlobortis交流pede Suspendisseたです\",\"icon_image\":103,\"order\":null},{\"_active\":false,\"title\":\"信頼と安全性\",\"sub_title\":\"これは飢饉は常にlobortis交流pede Suspendisseたです\",\"icon_image\":104,\"order\":null},{\"_active\":false,\"title\":\"ベストプライス保証\",\"sub_title\":\"これは飢饉は常にlobortis交流pede Suspendisseたです\",\"icon_image\":105,\"order\":null}],\"style\":\"normal\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"直前予約\",\"desc\":\"思慮深いデザインで高い評価を得ているホテル\",\"number\":5,\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":\"hotel\",\"title\":\"人気の目的地\",\"desc\":\"それは長い間確立された事実であり、\",\"number\":6,\"layout\":\"style_3\",\"order\":\"\",\"order_by\":\"\",\"to_location_detail\":false},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"text\",\"name\":\"Text\",\"model\":{\"content\":\"<h2><span style=\\\"color: #1a2b48; font-family: Poppins, sans-serif; font-size: 28px; font-weight: 500; background-color: #ffffff;\\\">ローカルエキスパートになる理由</span></h2>\\n<div><span style=\\\"color: #5e6d77; font-family: Poppins, sans-serif; font-size: 10pt; background-color: #ffffff;\\\">様々な質量マエケナスとその格言不動産</span></div>\\n<div id=\\\"gtx-trans\\\" style=\\\"position: absolute; left: -118px; top: 55.8125px;\\\">\\n<div class=\\\"gtx-trans-icon\\\">&nbsp;</div>\\n</div>\",\"class\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"追加の収入を得る\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":15,\"order\":null},{\"_active\":false,\"title\":\"ネットワークを開く\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":14,\"order\":null},{\"_active\":false,\"title\":\"あなたの言語を練習する\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":13,\"order\":null}],\"style\":\"style3\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"ベストセラーリスト\",\"desc\":\"思慮深いデザインで高い評価を得ているホテル\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',1,NULL,'2023-03-23 08:49:25',NULL);
/*!40000 ALTER TABLE `core_template_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_templates`
--

DROP TABLE IF EXISTS `core_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_templates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `type_id` int(11) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_templates`
--

LOCK TABLES `core_templates` WRITE;
/*!40000 ALTER TABLE `core_templates` DISABLE KEYS */;
INSERT INTO `core_templates` (`id`, `title`, `content`, `type_id`, `create_user`, `update_user`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1,'Home Page','[{\"type\":\"form_search_all_service\",\"name\":\"Form Search All Service\",\"model\":{\"service_types\":[\"hotel\",\"space\",\"tour\",\"car\",\"event\",\"flight\",\"boat\"],\"title\":\"Hi There!\",\"sub_title\":\"Where would you like to go?\",\"bg_image\":16,\"style\":\"carousel\",\"list_slider\":[{\"_active\":true,\"bg_image\":47},{\"_active\":true,\"bg_image\":16}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"offer_block\",\"name\":\"Offer Block\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"Special Offers\",\"desc\":\"Find Your Perfect Hotels Get the best<br>\\nprices on 20,000+ properties<br>\\nthe best prices on\",\"background_image\":17,\"link_title\":\"See Deals\",\"link_more\":\"#\",\"featured_text\":\"HOLIDAY SALE\"},{\"_active\":true,\"title\":\"Newsletters\",\"desc\":\"Join for free and get our <br>\\ntailored newsletters full of <br>\\nhot travel deals.\",\"background_image\":18,\"link_title\":\"Sign Up\",\"link_more\":\"/register\",\"featured_icon\":\"icofont-email\"},{\"_active\":true,\"title\":\"Travel Tips\",\"desc\":\"Tips from our travel experts to <br>\\nmake your next trip even<br>\\nbetter.\",\"background_image\":19,\"link_title\":\"Sign Up\",\"link_more\":\"/register\",\"featured_text\":null,\"featured_icon\":\"icofont-island-alt\"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"Bestseller Listing\",\"desc\":\"Hotel highly rated for thoughtful design\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":[\"space\",\"hotel\",\"tour\"],\"title\":\"Top Destinations\",\"desc\":\"It is a long established fact that a reader\",\"number\":6,\"layout\":\"style_4\",\"order\":\"id\",\"order_by\":\"asc\",\"to_location_detail\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Our best promotion tours\",\"number\":6,\"style\":\"box_shadow\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\",\"desc\":\"Most popular destinations\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"Rental Listing\",\"desc\":\"Homes highly rated for thoughtful design\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_car\",\"name\":\"Car: List Items\",\"model\":{\"title\":\"Car Trending\",\"desc\":\"Book incredible things to do around the world.\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true},{\"type\":\"list_event\",\"name\":\"Event: List Items\",\"model\":{\"title\":\"Classical Music Event \",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true},{\"type\":\"list_boat\",\"name\":\"Boat: List Items\",\"model\":{\"title\":\"Boat Listing\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\",\"custom_ids\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\": \"list_news\", \"name\": \"News: List Items\", \"model\": {\"title\": \"Read the latest from blog\", \"desc\": \"Contrary to popular belief\", \"number\": 6, \"category_id\": null, \"order\": \"id\", \"order_by\": \"asc\"}, \"component\": \"RegularBlock\", \"open\": true, \"is_container\": false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Know your city?\",\"sub_title\":\"Join 2000+ locals & 1200+ contributors from 3000 cities\",\"link_title\":\"Become Local Expert\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"testimonial\",\"name\":\"List Testimonial\",\"model\":{\"title\":\"Our happy clients\",\"list_item\":[{\"_active\":false,\"name\":\"Eva Hicks\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \",\"number_star\":5,\"avatar\":1},{\"_active\":false,\"name\":\"Donald Wolf\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \",\"number_star\":6,\"avatar\":2},{\"_active\":false,\"name\":\"Charlie Harrington\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui.\",\"number_star\":5,\"avatar\":3}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',NULL,1,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL),
(2,'Home Tour','[{\"type\":\"form_search_tour\",\"name\":\"Tour: Form Search\",\"model\":{\"title\":\"Love where you\'re going\",\"sub_title\":\"Book incredible things to do around the world.\",\"bg_image\":20},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"1,000+ local guides\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":5},{\"_active\":false,\"title\":\"Handcrafted experiences\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":4},{\"_active\":false,\"title\":\"96% happy travelers\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":6}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Trending Tours\",\"number\":5,\"style\":\"carousel\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"title\":\"Top Destinations\",\"number\":5,\"order\":\"id\",\"order_by\":\"desc\",\"service_type\":\"tour\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Local Experiences You’ll Love\",\"number\":8,\"style\":\"normal\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Know your city?\",\"sub_title\":\"Join 2000+ locals & 1200+ contributors from 3000 cities\",\"link_title\":\"Become Local Expert\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"testimonial\",\"name\":\"List Testimonial\",\"model\":{\"title\":\"Our happy clients\",\"list_item\":[{\"_active\":false,\"name\":\"Eva Hicks\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \",\"number_star\":5,\"avatar\":1},{\"_active\":false,\"name\":\"Donald Wolf\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \",\"number_star\":6,\"avatar\":2},{\"_active\":false,\"name\":\"Charlie Harrington\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui.\",\"number_star\":5,\"avatar\":3}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',NULL,1,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL),
(3,'Home Space','[{\"type\":\"form_search_space\",\"name\":\"Space: Form Search\",\"model\":{\"title\":\"Find your next rental\",\"sub_title\":\"Book incredible things to do around the world.\",\"bg_image\":61},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"Recommended Homes\",\"number\":5,\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"desc\":\"Homes highly rated for thoughtful design\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"space_term_featured_box\",\"name\":\"Space: Term Featured Box\",\"model\":{\"title\":\"Find a Home Type\",\"desc\":\"It is a long established fact that a reader\",\"term_space\":[\"26\",\"27\",\"28\",\"29\",\"30\",\"31\"]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":\"space\",\"title\":\"Top Destinations\",\"number\":6,\"order\":\"id\",\"order_by\":\"desc\",\"layout\":\"style_2\",\"desc\":\"It is a long established fact that a reader\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\" Rental Listing\",\"desc\":\"Homes highly rated for thoughtful design\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Know your city?\",\"sub_title\":\"Join 2000+ locals & 1200+ contributors from 3000 cities\",\"link_title\":\"Become Local Expert\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',NULL,1,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL),
(4,'Home Hotel','[{\"type\":\"form_search_hotel\",\"name\":\"Hotel: Form Search\",\"model\":{\"title\":\"Find Your Perfect Hotels\",\"sub_title\":\"Get the best prices on 20,000+ properties\",\"bg_image\":92},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"20,000+ properties\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":103,\"order\":null},{\"_active\":false,\"title\":\"Trust & Safety\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":104,\"order\":null},{\"_active\":true,\"title\":\"Best Price Guarantee\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":105,\"order\":null}],\"style\":\"normal\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"Last Minute Deals\",\"desc\":\"Hotel highly rated for thoughtful design\",\"number\":5,\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":\"hotel\",\"title\":\"Top Destinations\",\"desc\":\"It is a long established fact that a reader\",\"number\":6,\"layout\":\"style_3\",\"order\":\"\",\"order_by\":\"\",\"to_location_detail\":false},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"text\",\"name\":\"Text\",\"model\":{\"content\":\"<h2><span style=\\\"color: #1a2b48; font-family: Poppins, sans-serif; font-size: 28px; font-weight: 500; background-color: #ffffff;\\\">Why be a Local Expert</span></h2>\\n<div><span style=\\\"color: #5e6d77; font-family: Poppins, sans-serif; font-size: 10pt; background-color: #ffffff;\\\">Varius massa maecenas et id dictumst mattis</span></div>\",\"class\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"Earn an additional income\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":15,\"order\":null},{\"_active\":false,\"title\":\"Open your network\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":14,\"order\":null},{\"_active\":false,\"title\":\"Practice your language\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":13,\"order\":null}],\"style\":\"style3\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"Bestseller Listing\",\"desc\":\"Hotel highly rated for thoughtful design\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',NULL,1,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL),
(5,'Become a vendor','[{\"type\":\"vendor_register_form\",\"name\":\"Vendor Register Form\",\"model\":{\"title\":\"Become a vendor\",\"desc\":\"Join our community to unlock your greatest asset and welcome paying guests into your home.\",\"youtube\":\"https://www.youtube.com/watch?v=AmZ0WrEaf34\",\"bg_image\":11},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"text\",\"name\":\"Text\",\"model\":{\"content\":\"<h3><strong>How does it work?</strong></h3>\",\"class\":\"text-center\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"Sign up\",\"sub_title\":\"Click edit button to change this text  to change this text\",\"icon_image\":null,\"order\":null},{\"_active\":false,\"title\":\" Add your services\",\"sub_title\":\" Click edit button to change this text  to change this text\",\"icon_image\":null,\"order\":null},{\"_active\":true,\"title\":\"Get bookings\",\"sub_title\":\" Click edit button to change this text  to change this text\",\"icon_image\":null,\"order\":null}],\"style\":\"style2\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"video_player\",\"name\":\"Video Player\",\"model\":{\"title\":\"Share the beauty of your city\",\"youtube\":\"https://www.youtube.com/watch?v=hHUbLv4ThOo\",\"bg_image\":12},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"text\",\"name\":\"Text\",\"model\":{\"content\":\"<h3><strong>Why be a Local Expert</strong></h3>\",\"class\":\"text-center ptb60\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"Earn an additional income\",\"sub_title\":\" Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":15,\"order\":null},{\"_active\":true,\"title\":\"Open your network\",\"sub_title\":\" Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":14,\"order\":null},{\"_active\":true,\"title\":\"Practice your language\",\"sub_title\":\" Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":13,\"order\":null}],\"style\":\"style3\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"faqs\",\"name\":\"FAQ List\",\"model\":{\"title\":\"FAQs\",\"list_item\":[{\"_active\":false,\"title\":\"How will I receive my payment?\",\"sub_title\":\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},{\"_active\":true,\"title\":\"How do I upload products?\",\"sub_title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},{\"_active\":true,\"title\":\"How do I update or extend my availabilities?\",\"sub_title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\\n\"},{\"_active\":true,\"title\":\"How do I increase conversion rate?\",\"sub_title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',NULL,1,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL),
(6,'Home Car','[{\"type\":\"form_search_car\",\"name\":\"Car: Form Search\",\"model\":{\"title\":\"Search Rental Car Deals\",\"sub_title\":\"Book better cars from local hosts across the US and around the world.\",\"bg_image\":122},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"Free Cancellation\",\"sub_title\":\"Morbi semper fames lobortis ac\",\"icon_image\":103,\"order\":null},{\"_active\":true,\"title\":\"No Hidden Costs\",\"sub_title\":\"Morbi semper fames lobortis\",\"icon_image\":104,\"order\":null},{\"_active\":true,\"title\":\"24/7 Customer Care\",\"sub_title\":\"Morbi semper fames lobortis\",\"icon_image\":105,\"order\":null}],\"style\":\"normal\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"car_term_featured_box\",\"name\":\"Car: Term Featured Box\",\"model\":{\"title\":\"Browse by categories\",\"desc\":\"Book incredible things to do around the world.\",\"term_car\":[\"68\",\"67\",\"66\",\"65\",\"64\",\"63\",\"62\",\"61\"]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_car\",\"name\":\"Car: List Items\",\"model\":{\"title\":\"Trending used cars\",\"desc\":\"Book incredible things to do around the world.\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"how_it_works\",\"name\":\"How It Works\",\"model\":{\"title\":\"How does it work?\",\"list_item\":[{\"_active\":false,\"title\":\"Find The Car\",\"sub_title\":\"Lorem Ipsum is simply dummy text of the printing\",\"icon_image\":132,\"order\":null},{\"_active\":false,\"title\":\"Book It\",\"sub_title\":\"Lorem Ipsum is simply dummy text of the printing\",\"icon_image\":133,\"order\":null},{\"_active\":false,\"title\":\"Grab And Go\",\"sub_title\":\"Lorem Ipsum is simply dummy text of the printing\",\"icon_image\":134,\"order\":null}],\"background_image\":131},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":[\"car\"],\"title\":\"Top destinations\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing\",\"number\":6,\"layout\":\"style_2\",\"order\":\"id\",\"order_by\":\"asc\",\"to_location_detail\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',NULL,1,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL),
(7,'Home Tour Agency','[{\"type\":\"form_search_tour\",\"name\":\"Tour: Form Search\",\"model\":{\"title\":\"Love where you\'re going\",\"sub_title\":\"Book incredible things to do around the world.\",\"bg_image\":20,\"style\":\"carousel_v2\",\"list_slider\":[{\"_active\":true,\"title\":\"Love where you\'re going\",\"desc\":\"Book incredible things to do around the world.\",\"bg_image\":199}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Go to Venice\",\"number\":5,\"style\":\"carousel_simple\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"desc\":\"It is a long established fact that a reader will be distracted by the readable content of a page ...\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Sale up for new year\",\"sub_title\":\"Curabitur blandit tempus\",\"link_title\":\"Read More\",\"link_more\":\"#\",\"bg_color\":\"\",\"style\":\"style_2\",\"bg_image\":196},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Popular tour in the month\",\"number\":8,\"style\":\"carousel\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"desc\":\"Local Experiences You’ll Love \",\"is_featured\":true},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Enjoy your holiday\",\"sub_title\":\"Curabitur blandit tempus porttitor\",\"link_title\":\"Explore\",\"link_more\":\"#\",\"style\":\"style_3\",\"bg_color\":\"\",\"bg_image\":197},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"1,000+ local guides\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":183},{\"_active\":true,\"title\":\"Handcrafted experiences\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":187},{\"_active\":true,\"title\":\"96% happy travelers\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":185}],\"style\":\"style4\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"box_category_tour\",\"name\":\"Tour: Box Category\",\"model\":{\"title\":\"Top activity\",\"desc\":\"One way to vertically center is to use my-auto\",\"list_item\":[{\"_active\":true,\"category_id\":\"4\",\"image_id\":189},{\"_active\":true,\"category_id\":\"3\",\"image_id\":190},{\"_active\":true,\"category_id\":\"2\",\"image_id\":191},{\"_active\":true,\"category_id\":\"1\",\"image_id\":192},{\"_active\":true,\"category_id\":\"2\",\"image_id\":190}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"client_feedback\",\"name\":\"Client Feedback\",\"model\":{\"title\":\"\",\"image_id\":198,\"list_item\":[{\"_active\":false,\"title\":\"Babila Ebwélé\",\"sub_title\":\"BookingCore\",\"desc\":\"We had 10 days. Iguazu Falls, Rio, and Paraty. We had Orico as a guide for the first 4 days...he was fabulous.  \"},{\"_active\":true,\"title\":\"DoQuan\",\"sub_title\":\"Travel\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_news\",\"name\":\"News: List Items\",\"model\":{\"title\":\"Recent Articles\",\"desc\":\" One way to vertically center is to use my-auto \",\"number\":3,\"category_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]',NULL,1,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL),
(8,'Home Page v2','[{\"type\":\"form_search_all_service\",\"name\":\"Form Search All Service\",\"model\":{\"title_for_car\":\"\",\"title_for_event\":\"\",\"title_for_hotel\":\"\",\"title_for_space\":\"\",\"title_for_tour\":\"\",\"service_types\":[\"hotel\",\"tour\",\"space\",\"event\",\"car\"],\"title\":\"\",\"sub_title\":\"\",\"style\":\"carousel_v2\",\"bg_image\":\"\",\"list_slider\":[{\"_active\":true,\"title\":\"The best tour experience\",\"desc\":\" Without the crowds\",\"bg_image\":194},{\"_active\":true,\"title\":\"The best tour experience\",\"desc\":\"This Place is Alive\",\"bg_image\":193}],\"hide_form_search\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"BEST SELECTION\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":184,\"order\":null},{\"_active\":true,\"title\":\"BEST PRICE GUARANTEE\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":186,\"order\":null},{\"_active\":true,\"title\":\"24/7 SUPPORT\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":188,\"order\":null}],\"style\":\"style5\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"Hotel Best\",\"desc\":\"Morbi semper fames lobortis ac hac penatibus\",\"number\":\"\",\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Discount 50% Off\",\"sub_title\":\"Curabitur blandit tempus porttitor\",\"link_title\":\"Read More\",\"link_more\":\"#\",\"style\":\"style_2\",\"bg_color\":\"\",\"bg_image\":195},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"space_term_featured_box\",\"name\":\"Space: Term Featured Box\",\"model\":{\"title\":\"Top Comfort Service\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"term_space\":[\"27\",\"28\",\"29\",\"30\",\"31\",\"26\"]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"Service Featured Phoenix Resort\",\"desc\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"client_feedback\",\"name\":\"Client Feedback\",\"model\":{\"image_id\":198,\"list_item\":[{\"_active\":true,\"title\":\"DoQuan\",\"sub_title\":\"Travel\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \"},{\"_active\":true,\"title\":\"HoangAnh\",\"sub_title\":\"Travel\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":[\"hotel\",\"space\",\"tour\"],\"title\":\"Travel Highlights\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":3,\"layout\":\"style_4\",\"order\":\"id\",\"order_by\":\"asc\",\"custom_ids\":\"\",\"to_location_detail\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Viet Nam Travel\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":5,\"style\":\"normal\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":true},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_news\",\"name\":\"News: List Items\",\"model\":{\"title\":\"Travel News\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":3,\"category_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"vendor_list\",\"name\":\"List Vendor\",\"model\":{\"title\":\"Featured Vendor\",\"desc\":\"Lorem ipsum dolor sit amet elit, sed do eiusmod tempor\",\"number\":4,\"order\":\"id\",\"order_by\":\"desc\",\"custom_ids\":\"\"},\"component\":\"RegularBlock\",\"open\":true}]',NULL,1,NULL,NULL,NULL,'2023-03-23 08:49:25',NULL);
/*!40000 ALTER TABLE `core_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_translations`
--

DROP TABLE IF EXISTS `core_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `locale` varchar(10) DEFAULT NULL,
  `string` text DEFAULT NULL,
  `parent_id` bigint(20) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `last_build_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_translations`
--

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

--
-- Table structure for table `core_vendor_plan_meta`
--

DROP TABLE IF EXISTS `core_vendor_plan_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_vendor_plan_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_plan_id` int(11) NOT NULL,
  `post_type` varchar(255) DEFAULT NULL,
  `enable` tinyint(4) DEFAULT NULL,
  `maximum_create` int(11) DEFAULT NULL,
  `auto_publish` tinyint(4) DEFAULT NULL,
  `commission` int(11) DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_vendor_plan_meta`
--

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

--
-- Table structure for table `core_vendor_plans`
--

DROP TABLE IF EXISTS `core_vendor_plans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `core_vendor_plans` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `base_commission` int(11) NOT NULL,
  `status` varchar(20) DEFAULT NULL,
  `publish_date` datetime DEFAULT NULL,
  `create_user` bigint(20) DEFAULT NULL,
  `update_user` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_vendor_plans`
--

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

--
-- Table structure for table `failed_jobs`
--

DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(191) NOT NULL,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `failed_jobs`
--

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

--
-- Table structure for table `jobs`
--

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(191) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) unsigned NOT NULL,
  `reserved_at` int(10) unsigned DEFAULT NULL,
  `available_at` int(10) unsigned NOT NULL,
  `created_at` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jobs`
--

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

--
-- Table structure for table `location_category`
--

DROP TABLE IF EXISTS `location_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `location_category` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `icon_class` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `_lft` int(10) unsigned NOT NULL DEFAULT 0,
  `_rgt` int(10) unsigned NOT NULL DEFAULT 0,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `origin_id` bigint(20) DEFAULT NULL,
  `lang` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `location_category__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_category`
--

LOCK TABLES `location_category` WRITE;
/*!40000 ALTER TABLE `location_category` DISABLE KEYS */;
INSERT INTO `location_category` (`id`, `name`, `icon_class`, `content`, `slug`, `status`, `_lft`, `_rgt`, `parent_id`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1,'Education','icofont-education',NULL,NULL,'publish',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(2,'Health','fa fa-hospital-o',NULL,NULL,'publish',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(3,'Transportation','fa fa-subway',NULL,NULL,'publish',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `location_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `location_category_translations`
--

DROP TABLE IF EXISTS `location_category_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `location_category_translations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `origin_id` bigint(20) DEFAULT NULL,
  `locale` varchar(10) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `location_category_translations_origin_id_locale_unique` (`origin_id`,`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_category_translations`
--

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

--
-- Table structure for table `media_files`
--

DROP TABLE IF EXISTS `media_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_files` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `file_name` varchar(255) DEFAULT NULL,
  `file_path` varchar(255) DEFAULT NULL,
  `file_size` varchar(255) DEFAULT NULL,
  `file_type` varchar(255) DEFAULT NULL,
  `file_extension` varchar(255) DEFAULT NULL,
  `driver` varchar(255) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `app_id` int(11) DEFAULT NULL,
  `app_user_id` int(11) DEFAULT NULL,
  `file_width` int(11) DEFAULT NULL,
  `file_height` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `folder_id` bigint(20) DEFAULT 0,
  `author_id` bigint(20) DEFAULT NULL,
  `file_edit` tinyint(4) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=228 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_files`
--

LOCK TABLES `media_files` WRITE;
/*!40000 ALTER TABLE `media_files` DISABLE KEYS */;
INSERT INTO `media_files` (`id`, `file_name`, `file_path`, `file_size`, `file_type`, `file_extension`, `driver`, `create_user`, `update_user`, `deleted_at`, `app_id`, `app_user_id`, `file_width`, `file_height`, `created_at`, `updated_at`, `folder_id`, `author_id`, `file_edit`) VALUES (1,'avatar','demo/general/avatar.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(2,'avatar-2','demo/general/avatar-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(3,'avatar-3','demo/general/avatar-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(4,'ico_adventurous','demo/general/ico_adventurous.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(5,'ico_localguide','demo/general/ico_localguide.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(6,'ico_maps','demo/general/ico_maps.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(7,'ico_paymethod','demo/general/ico_paymethod.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(8,'logo','demo/general/logo.svg',NULL,'image/svg+xml','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(9,'bg_contact','demo/general/bg-contact.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(10,'favicon','demo/general/favicon.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(11,'thumb-vendor-register','demo/general/thumb-vendor-register.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(12,'bg-video-vendor-register1','demo/general/bg-video-vendor-register1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(13,'ico_chat_1','demo/general/ico_chat_1.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(14,'ico_friendship_1','demo/general/ico_friendship_1.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(15,'ico_piggy-bank_1','demo/general/ico_piggy-bank_1.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(16,'home-mix','demo/general/home-mix.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(17,'image_home_mix_1','demo/general/image_home_mix_1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(18,'image_home_mix_2','demo/general/image_home_mix_2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(19,'image_home_mix_3','demo/general/image_home_mix_3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(20,'banner-search','demo/tour/banner-search.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(21,'tour-1','demo/tour/tour-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(22,'tour-2','demo/tour/tour-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(23,'tour-3','demo/tour/tour-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(24,'tour-4','demo/tour/tour-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(25,'tour-5','demo/tour/tour-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(26,'tour-6','demo/tour/tour-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(27,'tour-7','demo/tour/tour-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(28,'tour-8','demo/tour/tour-8.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(29,'tour-9','demo/tour/tour-9.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(30,'tour-10','demo/tour/tour-10.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(31,'tour-11','demo/tour/tour-11.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(32,'tour-12','demo/tour/tour-12.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(33,'tour-13','demo/tour/tour-13.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(34,'tour-14','demo/tour/tour-14.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(35,'tour-15','demo/tour/tour-15.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(36,'tour-16','demo/tour/tour-16.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(37,'gallery-1','demo/tour/gallery-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(38,'gallery-2','demo/tour/gallery-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(39,'gallery-3','demo/tour/gallery-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(40,'gallery-4','demo/tour/gallery-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(41,'gallery-5','demo/tour/gallery-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(42,'gallery-6','demo/tour/gallery-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(43,'gallery-7','demo/tour/gallery-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(44,'banner-tour-1','demo/tour/banner-detail/banner-tour-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(45,'banner-tour-2','demo/tour/banner-detail/banner-tour-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(46,'banner-tour-3','demo/tour/banner-detail/banner-tour-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(47,'banner-tour-4','demo/tour/banner-detail/banner-tour-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(48,'banner-tour-5','demo/tour/banner-detail/banner-tour-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(49,'banner-tour-6','demo/tour/banner-detail/banner-tour-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(50,'banner-tour-7','demo/tour/banner-detail/banner-tour-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(51,'banner-tour-8','demo/tour/banner-detail/banner-tour-8.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(52,'banner-tour-9','demo/tour/banner-detail/banner-tour-9.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(53,'banner-tour-10','demo/tour/banner-detail/banner-tour-10.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(54,'banner-tour-11','demo/tour/banner-detail/banner-tour-11.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(55,'banner-tour-12','demo/tour/banner-detail/banner-tour-12.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(56,'banner-tour-13','demo/tour/banner-detail/banner-tour-13.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(57,'banner-tour-14','demo/tour/banner-detail/banner-tour-14.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(58,'banner-tour-15','demo/tour/banner-detail/banner-tour-15.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(59,'banner-tour-16','demo/tour/banner-detail/banner-tour-16.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(60,'banner-tour-17','demo/tour/banner-detail/banner-tour-17.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(61,'banner-search-space','demo/space/banner-search-space.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(62,'banner-search-space-2','demo/space/banner-search-space-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(63,'space-1','demo/space/space-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(64,'space-2','demo/space/space-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(65,'space-3','demo/space/space-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(66,'space-4','demo/space/space-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(67,'space-5','demo/space/space-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(68,'space-6','demo/space/space-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(69,'space-7','demo/space/space-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(70,'space-8','demo/space/space-8.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(71,'space-9','demo/space/space-9.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(72,'space-10','demo/space/space-10.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(73,'space-11','demo/space/space-11.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(74,'space-12','demo/space/space-12.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(75,'space-13','demo/space/space-13.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(76,'space-gallery-1','demo/space/gallery/space-gallery-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(77,'space-gallery-2','demo/space/gallery/space-gallery-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(78,'space-gallery-3','demo/space/gallery/space-gallery-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(79,'space-gallery-4','demo/space/gallery/space-gallery-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(80,'space-gallery-5','demo/space/gallery/space-gallery-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(81,'space-gallery-6','demo/space/gallery/space-gallery-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(82,'space-gallery-7','demo/space/gallery/space-gallery-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(83,'space-single-1','demo/space/space-single-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(84,'space-single-2','demo/space/space-single-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(85,'space-single-3','demo/space/space-single-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(86,'icon-space-box-1','demo/space/featured-box/icon-space-box-1.png',NULL,'image/png','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(87,'icon-space-box-2','demo/space/featured-box/icon-space-box-2.png',NULL,'image/png','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(88,'icon-space-box-3','demo/space/featured-box/icon-space-box-3.png',NULL,'image/png','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(89,'icon-space-box-4','demo/space/featured-box/icon-space-box-4.png',NULL,'image/png','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(90,'icon-space-box-5','demo/space/featured-box/icon-space-box-5.png',NULL,'image/png','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(91,'icon-space-box-6','demo/space/featured-box/icon-space-box-6.png',NULL,'image/png','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(92,'banner-search-hotel','demo/hotel/banner-search-hotel.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(93,'hotel-featured-1','demo/hotel/hotel-featured-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(94,'hotel-featured-2','demo/hotel/hotel-featured-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(95,'hotel-featured-3','demo/hotel/hotel-featured-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(96,'hotel-featured-4','demo/hotel/hotel-featured-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(97,'hotel-gallery-1','demo/hotel/gallery/hotel-gallery-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(98,'hotel-gallery-2','demo/hotel/gallery/hotel-gallery-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(99,'hotel-gallery-3','demo/hotel/gallery/hotel-gallery-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(100,'hotel-gallery-4','demo/hotel/gallery/hotel-gallery-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(101,'hotel-gallery-5','demo/hotel/gallery/hotel-gallery-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(102,'hotel-gallery-6','demo/hotel/gallery/hotel-gallery-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(103,'hotel-icon-1','demo/hotel/hotel-icon-1.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(104,'hotel-icon-2','demo/hotel/hotel-icon-2.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(105,'hotel-icon-3','demo/hotel/hotel-icon-3.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(106,'location-1','demo/location/location-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(107,'location-2','demo/location/location-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(108,'location-3','demo/location/location-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(109,'location-4','demo/location/location-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(110,'location-5','demo/location/location-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(111,'location-6','demo/location/location-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(112,'banner-location-1','demo/location/banner-detail/banner-location-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(113,'trip-idea-1','demo/location/trip-idea/trip-idea-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(114,'trip-idea-2','demo/location/trip-idea/trip-idea-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(115,'news-1','demo/news/news-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(116,'news-2','demo/news/news-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(117,'news-3','demo/news/news-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(118,'news-4','demo/news/news-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(119,'news-5','demo/news/news-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(120,'news-6','demo/news/news-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(121,'news-7','demo/news/news-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(122,'news-banner','demo/news/news-banner.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(123,'banner-search-car','demo/car/banner-search-car.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(124,'Convertibles','demo/car/terms/convertibles.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(125,'Coupes','demo/car/terms/couple.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(126,'Hatchbacks','demo/car/terms/hatchback.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(127,'Minivans','demo/car/terms/minivans.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(128,'Sedan','demo/car/terms/sedan.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(129,'SUVs','demo/car/terms/suv.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(130,'Trucks','demo/car/terms/trucks.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(131,'Wagons','demo/car/terms/wagons.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(132,'home-car-bg-1','demo/car/home-car-bg-1.png',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(133,'number-1','demo/car/number-1.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(134,'number-2','demo/car/number-2.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(135,'number-3','demo/car/number-3.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(136,'banner-car-single','demo/car/banner-single.jpg',NULL,'image/jpg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(137,'Airbag','demo/car/feature/Airbag.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(138,'FM Radio','demo/car/feature/Radio.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(139,'Sensor','demo/car/feature/Sensor.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(140,'Speed Km','demo/car/feature/Speed.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(141,'Steering Wheel','demo/car/feature/Steering.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(142,'Power Windows','demo/car/feature/Windows.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(143,'car-1','demo/car/car-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(144,'car-2','demo/car/car-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(145,'car-3','demo/car/car-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(146,'car-4','demo/car/car-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(147,'car-5','demo/car/car-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(148,'car-6','demo/car/car-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(149,'car-7','demo/car/car-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(150,'car-8','demo/car/car-8.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(151,'car-9','demo/car/car-9.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(152,'car-10','demo/car/car-10.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(153,'car-11','demo/car/car-11.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(154,'car-12','demo/car/car-12.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(155,'car-gallery-1','demo/car/gallery-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(156,'car-gallery-2','demo/car/gallery-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(157,'car-gallery-3','demo/car/gallery-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(158,'car-gallery-4','demo/car/gallery-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(159,'car-gallery-5','demo/car/gallery-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(160,'car-gallery-6','demo/car/gallery-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(161,'car-gallery-7','demo/car/gallery-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(162,'banner-search-event','demo/event/banner-search.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(163,'event-1','demo/event/event-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(164,'event-2','demo/event/event-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(165,'event-3','demo/event/event-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(166,'event-4','demo/event/event-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(167,'event-5','demo/event/event-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(168,'event-6','demo/event/event-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(169,'event-7','demo/event/event-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(170,'event-8','demo/event/event-8.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(171,'event-9','demo/event/event-9.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(172,'event-10','demo/event/event-10.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(173,'event-11','demo/event/event-11.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(174,'event-12','demo/event/event-12.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(175,'gallery-event-1','demo/event/gallery-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(176,'gallery-event-2','demo/event/gallery-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(177,'gallery-event-3','demo/event/gallery-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(178,'gallery-event-4','demo/event/gallery-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(179,'gallery-event-5','demo/event/gallery-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(180,'gallery-event-6','demo/event/gallery-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(181,'banner-event-1','demo/event/banner-detail/banner-event-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(182,'banner-event-2','demo/event/banner-detail/banner-event-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(183,'banner-event-3','demo/event/banner-detail/banner-event-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(184,'icon_global','demo/general/icon_global.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(185,'icon_global_white','demo/general/icon_global_white.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(186,'icon_price','demo/general/icon_price.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(187,'icon_price_white','demo/general/icon_price_white.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(188,'icon_support','demo/general/icon_support.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(189,'icon_support_white','demo/general/icon_support_white.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(190,'box-tour-1','demo/tour/box-tour-1.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(191,'box-tour-2','demo/tour/box-tour-2.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(192,'box-tour-3','demo/tour/box-tour-3.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(193,'box-tour-4','demo/tour/box-tour-4.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(194,'banner-new-1','demo/general/banner-new-1.jpg',NULL,'image/jpg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(195,'banner-new-2','demo/general/banner-new-2.jpg',NULL,'image/jpg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(196,'call-to-action-bg-1','demo/general/call-to-action-bg-1.jpg',NULL,'image/jpg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(197,'call-to-action-bg-2','demo/general/call-to-action-bg-2.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(198,'call-to-action-bg-3','demo/general/call-to-action-bg-3.png',NULL,'image/png','png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(199,'customer-feedback','demo/general/customer-feedback.jpg',NULL,'image/jpg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(200,'customer-feedback-2','demo/general/customer-feedback-2.jpg',NULL,'image/jpg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(201,'logo-white','demo/general/logo_white.svg',NULL,'image/svg','svg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(202,'banner-flight','demo/flight/banner-flight.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(203,'airline-img1','demo/flight/airline/img1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(204,'airline-img2','demo/flight/airline/img2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(205,'airline-img3','demo/flight/airline/img3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(206,'banner-boat-single','demo/boat/banner-single.jpg',NULL,'image/jpg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(207,'banner-search-boat','demo/boat/banner-search-boat.jpg',NULL,'image/jpg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(208,'boat-1','demo/boat/boat-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(209,'boat-2','demo/boat/boat-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(210,'boat-3','demo/boat/boat-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(211,'boat-4','demo/boat/boat-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(212,'boat-5','demo/boat/boat-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(213,'boat-6','demo/boat/boat-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(214,'boat-7','demo/boat/boat-7.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(215,'boat-8','demo/boat/boat-8.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(216,'boat-9','demo/boat/boat-9.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(217,'boat-10','demo/boat/boat-10.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(218,'boat-11','demo/boat/boat-11.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(219,'boat-12','demo/boat/boat-12.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(220,'boat-gallery-1','demo/boat/gallery-1.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(221,'boat-gallery-2','demo/boat/gallery-2.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(222,'boat-gallery-3','demo/boat/gallery-3.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(223,'boat-gallery-4','demo/boat/gallery-4.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(224,'boat-gallery-5','demo/boat/gallery-5.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(225,'boat-gallery-6','demo/boat/gallery-6.jpg',NULL,'image/jpeg','jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0),
(226,'demo-logo','0000/1/2023/03/23/demo-logo.png','1964','image/png','png','uploads',1,NULL,NULL,NULL,NULL,140,40,'2023-03-23 10:10:46','2023-03-23 10:10:46',NULL,1,0),
(227,'demo-logo1','0000/1/2023/03/23/demo-logo1.png','1964','image/png','png','uploads',1,NULL,NULL,NULL,NULL,140,40,'2023-03-23 10:12:03','2023-03-23 10:12:03',0,1,0);
/*!40000 ALTER TABLE `media_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_folders`
--

DROP TABLE IF EXISTS `media_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_folders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `parent_id` bigint(20) DEFAULT 0,
  `user_id` bigint(20) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `media_folders_parent_id_name_unique` (`parent_id`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_folders`
--

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

--
-- Table structure for table `migrations`
--

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `migrations`
--

LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1,'2014_10_12_000000_create_users_table',1),
(2,'2014_10_12_100000_create_password_resets_table',1),
(3,'2014_10_12_200000_add_two_factor_columns_to_users_table',1),
(4,'2019_03_17_114820_create_table_core_pages',1),
(5,'2019_03_17_140539_create_media_files_table',1),
(6,'2019_03_20_072502_create_bravo_tours',1),
(7,'2019_03_20_081256_create_core_news_category_table',1),
(8,'2019_03_27_081940_create_core_setting_table',1),
(9,'2019_03_28_101009_create_bravo_booking_table',1),
(10,'2019_03_28_165911_create_booking_meta_table',1),
(11,'2019_03_29_093236_update_bookings_table',1),
(12,'2019_04_01_045229_create_user_meta_table',1),
(13,'2019_04_01_150630_create_menu_table',1),
(14,'2019_04_02_150630_create_core_news_table',1),
(15,'2019_04_03_073553_bravo_tour_category',1),
(16,'2019_04_03_080159_bravo_location',1),
(17,'2019_04_05_143248_create_core_templates_table',1),
(18,'2019_04_18_152537_create_bravo_tours_meta_table',1),
(19,'2019_05_07_085430_create_core_languages_table',1),
(20,'2019_05_07_085442_create_core_translations_table',1),
(21,'2019_05_17_074008_create_bravo_review',1),
(22,'2019_05_17_074048_create_bravo_review_meta',1),
(23,'2019_05_17_113042_create_tour_attrs_table',1),
(24,'2019_05_21_084235_create_bravo_contact_table',1),
(25,'2019_05_28_152845_create_core_subscribers_table',1),
(26,'2019_06_17_142338_bravo_seo',1),
(27,'2019_07_03_070406_update_from_1_0_to_1_1',1),
(28,'2019_07_08_075436_create_core_vendor_plans',1),
(29,'2019_07_08_083733_create_vendors_plan_payments',1),
(30,'2019_07_11_083501_update_from_110_to_120',1),
(31,'2019_07_30_072809_create_flight_table',1),
(32,'2019_07_30_072809_create_space_table',1),
(33,'2019_07_30_072809_create_tour_dates_table',1),
(34,'2019_08_05_031018_create_core_vendor_plan_meta_table',1),
(35,'2019_08_09_163909_create_inbox_table',1),
(36,'2019_08_16_094354_update_from_120_to_130',1),
(37,'2019_08_19_000000_create_failed_jobs_table',1),
(38,'2019_08_20_162106_create_table_user_upgrade_requests',1),
(39,'2019_09_13_070650_update_from_130_to_140',1),
(40,'2019_09_20_072809_create_hotel_table',1),
(41,'2019_10_22_151319_create_car_table',1),
(42,'2019_11_05_092516_update_from_140_to_150',1),
(43,'2019_11_18_085024_update_from_150_to_151',1),
(44,'2019_12_14_000001_create_personal_access_tokens_table',1),
(45,'2020_03_09_102753_update_from_151_to_160',1),
(46,'2020_04_02_150631_create_core_tags_table',1),
(47,'2020_04_05_101016_create_event_table',1),
(48,'2020_05_16_073120_update_from_160_to_170',1),
(49,'2020_11_23_092238_create_notifications_table',1),
(50,'2021_03_19_102157_update_190',1),
(51,'2021_03_19_102157_update_core_190',1),
(52,'2021_04_02_150632_create_core_tag_new_table',1),
(53,'2021_04_20_102158_update_from_190_to_200',1),
(54,'2021_08_22_173931_create_role_table',1),
(55,'2021_09_16_072809_create_coupon_table',1),
(56,'2021_09_28_174324_create_jobs_table',1),
(57,'2021_09_29_041836_create_user_plan_table',1),
(58,'2021_10_26_151319_create_boat_table',1),
(59,'2022_02_08_072809_create_popup_table',1),
(60,'2022_02_14_134137_create_bravo_booking_payment_meta',1),
(61,'2022_02_28_999999_add_active_status_to_users',1),
(62,'2022_02_28_999999_add_dark_mode_to_users',1),
(63,'2022_02_28_999999_add_messenger_color_to_users',1),
(64,'2022_02_28_999999_create_favorites_table',1),
(65,'2022_02_28_999999_create_messages_table',1),
(66,'2022_03_01_002101_update_user_table',1),
(67,'2022_03_15_040235_update_241_to_242',1),
(68,'2022_03_23_042635_update_242_to_243',1),
(69,'2022_07_11_085656_create_enquiry_reply_table',1),
(70,'2022_07_13_082318_create_media_folder_table',1),
(71,'2022_07_25_132120_create_vendor_team',1),
(72,'2022_07_31_132706_update_to_250',1),
(73,'2022_10_19_140925_update_to_300',1),
(74,'2023_01_05_095322_update_core_to_300',1);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notifications`
--

DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notifications` (
  `id` char(36) NOT NULL,
  `type` varchar(191) NOT NULL,
  `notifiable_type` varchar(191) NOT NULL,
  `notifiable_id` bigint(20) unsigned NOT NULL,
  `data` text NOT NULL,
  `for_admin` tinyint(1) DEFAULT 0,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notifications_notifiable_type_notifiable_id_index` (`notifiable_type`,`notifiable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notifications`
--

LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
INSERT INTO `notifications` (`id`, `type`, `notifiable_type`, `notifiable_id`, `data`, `for_admin`, `read_at`, `created_at`, `updated_at`) VALUES ('0b72d71a-2dd5-426b-86b7-3cbb3014f50e','App\\Notifications\\AdminChannelServices','App\\Models\\User',12,'{\"id\":\"0b72d71a-2dd5-426b-86b7-3cbb3014f50e\",\"for_admin\":1,\"notification\":{\"id\":12,\"name\":\"Ravi Ravi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user\\/userUpgradeRequest\",\"type\":\"user_upgrade_request\",\"message\":\"Ravi Ravi has requested to become a vendor\"}}',1,NULL,'2023-09-18 05:53:18','2023-09-18 05:53:18'),
('0e2de12b-79ca-48c1-a16b-b2e4d4c4c003','App\\Notifications\\PrivateChannelServices','App\\User',4,'{\"id\":\"0e2de12b-79ca-48c1-a16b-b2e4d4c4c003\",\"for_admin\":0,\"notification\":{\"id\":11,\"event\":\"BookingCreatedEvent\",\"to\":\"vendor\",\"name\":\"Kumar Abhi\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/vendor\\/booking-report\",\"type\":\"tour\",\"message\":\"Kumar Abhi has created new Booking\"}}',0,NULL,'2024-07-26 20:54:34','2024-07-26 20:54:34'),
('13432204-d688-44d3-b517-9233291e83c5','App\\Notifications\\AdminChannelServices','App\\User',10,'{\"id\":\"13432204-d688-44d3-b517-9233291e83c5\",\"for_admin\":1,\"notification\":{\"id\":10,\"event\":\"SendMailUserRegistered\",\"to\":\"admin\",\"name\":\"gregos greg\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user?s=10\",\"type\":\"user\",\"message\":\"gregos greg has been registered\"}}',1,NULL,'2023-05-17 11:17:12','2023-05-17 11:17:12'),
('13450365-39a5-4c03-b486-515378ed6573','App\\Notifications\\AdminChannelServices','App\\Models\\User',13,'{\"id\":\"13450365-39a5-4c03-b486-515378ed6573\",\"for_admin\":1,\"notification\":{\"id\":10,\"event\":\"BookingCreatedEvent\",\"to\":\"admin\",\"name\":\"Nitesh Malviya\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/report\\/booking\",\"type\":\"hotel\",\"message\":\"Nitesh Malviya has created new Booking\"}}',1,NULL,'2023-09-30 09:46:52','2023-09-30 09:46:52'),
('1632fd92-2f44-435d-9535-7629a2db7498','App\\Notifications\\PrivateChannelServices','App\\User',11,'{\"id\":\"1632fd92-2f44-435d-9535-7629a2db7498\",\"for_admin\":0,\"notification\":{\"event\":\"BookingUpdatedEvent\",\"to\":\"customer\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/user\\/booking-history\",\"type\":\"event\",\"message\":\"Event of Washington, D.C. Highlights has changed to completed\"}}',0,NULL,'2023-09-19 07:41:54','2023-09-19 07:41:54'),
('18ae3bd4-19c2-4e15-aa34-09e0a571411a','App\\Notifications\\PrivateChannelServices','Modules\\User\\Models\\User',12,'{\"id\":\"18ae3bd4-19c2-4e15-aa34-09e0a571411a\",\"for_admin\":0,\"notification\":{\"id\":12,\"event\":\"VendorApproved\",\"to\":\"vendor\",\"name\":\"Ravi Ravi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/user\\/dashboard\",\"type\":\"user_upgrade_request\",\"message\":\"Your upgrade request has approved already\"}}',0,NULL,'2023-09-18 05:55:16','2023-09-18 05:55:16'),
('1b3491b3-c4e8-4dbe-a895-c32c00c69999','App\\Notifications\\AdminChannelServices','App\\Models\\User',10,'{\"id\":\"1b3491b3-c4e8-4dbe-a895-c32c00c69999\",\"for_admin\":1,\"notification\":{\"id\":10,\"name\":\"gregos greg\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user\\/userUpgradeRequest\",\"type\":\"user_upgrade_request\",\"message\":\"gregos greg has requested to become a vendor\"}}',1,'2023-05-17 13:49:40','2023-05-17 11:31:35','2023-05-17 13:49:40'),
('1e451c9d-557a-4d39-9fc8-2a86abf67e3a','App\\Notifications\\PrivateChannelServices','App\\User',4,'{\"id\":\"1e451c9d-557a-4d39-9fc8-2a86abf67e3a\",\"for_admin\":0,\"notification\":{\"id\":3,\"event\":\"BookingCreatedEvent\",\"to\":\"vendor\",\"name\":\"Test Software\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/vendor\\/booking-report\",\"type\":\"car\",\"message\":\"Test Software has created new Booking\"}}',0,NULL,'2023-05-25 18:54:48','2023-05-25 18:54:48'),
('210aebbf-6960-4fa2-b34c-5d8447cc780f','App\\Notifications\\PrivateChannelServices','App\\User',15,'{\"id\":\"210aebbf-6960-4fa2-b34c-5d8447cc780f\",\"for_admin\":0,\"notification\":{\"id\":15,\"event\":\"AdminUpdateVerificationData\",\"to\":\"customer\",\"name\":\"Tag Info\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/user\\/verification\",\"type\":\"user_verification_request\",\"message\":\"Your account information was verified\"}}',0,NULL,'2024-04-23 13:31:23','2024-04-23 13:31:23'),
('215ff4d0-aa02-4e46-ab71-9839eb93f6f4','App\\Notifications\\PrivateChannelServices','Modules\\User\\Models\\User',12,'{\"id\":\"215ff4d0-aa02-4e46-ab71-9839eb93f6f4\",\"for_admin\":0,\"notification\":{\"id\":12,\"event\":\"VendorApproved\",\"to\":\"vendor\",\"name\":\"Ravi Ravi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/user\\/dashboard\",\"type\":\"user_upgrade_request\",\"message\":\"Your upgrade request has approved already\"}}',0,NULL,'2023-09-18 05:55:16','2023-09-18 05:55:16'),
('257d055f-b9ac-48fd-92b0-cfa70acb566e','App\\Notifications\\PrivateChannelServices','App\\User',6,'{\"id\":\"257d055f-b9ac-48fd-92b0-cfa70acb566e\",\"for_admin\":0,\"notification\":{\"id\":13,\"event\":\"BookingCreatedEvent\",\"to\":\"vendor\",\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/vendor\\/booking-report\",\"type\":\"space\",\"message\":\"Demo has created new Booking\"}}',0,NULL,'2024-12-31 19:14:18','2024-12-31 19:14:18'),
('28eeddc6-04f1-48d7-a7e9-d8d7b79cdebf','App\\Notifications\\AdminChannelServices','App\\User',7,'{\"id\":\"28eeddc6-04f1-48d7-a7e9-d8d7b79cdebf\",\"for_admin\":1,\"notification\":{\"id\":7,\"event\":\"SendMailUserRegistered\",\"to\":\"admin\",\"name\":\"Gyanendu Jigyasa\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user?s=7\",\"type\":\"user\",\"message\":\"Gyanendu Jigyasa has been registered\"}}',1,'2023-03-27 22:39:40','2023-03-23 15:52:44','2023-03-27 22:39:40'),
('2ae16e3c-c68f-46ec-a4f9-a05f61f75ce5','App\\Notifications\\AdminChannelServices','App\\User',13,'{\"id\":\"2ae16e3c-c68f-46ec-a4f9-a05f61f75ce5\",\"for_admin\":1,\"notification\":{\"id\":13,\"event\":\"SendMailUserRegistered\",\"to\":\"admin\",\"name\":\"nitesh test\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user?s=13\",\"type\":\"user\",\"message\":\"nitesh test has been registered\"}}',1,NULL,'2023-09-30 09:44:45','2023-09-30 09:44:45'),
('2edc30c0-9213-42ae-b3b7-04833694d66d','App\\Notifications\\PrivateChannelServices','App\\User',11,'{\"id\":\"2edc30c0-9213-42ae-b3b7-04833694d66d\",\"for_admin\":0,\"notification\":{\"event\":\"BookingUpdatedEvent\",\"to\":\"customer\",\"id\":11,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/user\\/booking-history\",\"type\":\"tour\",\"message\":\"Los Angeles to San Francisco Express  has changed to confirmed\"}}',0,NULL,'2024-07-26 20:58:40','2024-07-26 20:58:40'),
('30672e2e-ecdf-4b23-9b5e-ab34698d6006','App\\Notifications\\PrivateChannelServices','App\\User',11,'{\"id\":\"30672e2e-ecdf-4b23-9b5e-ab34698d6006\",\"for_admin\":0,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"customer\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/user\\/booking-history\",\"type\":\"event\",\"message\":\"Demo has updated the PAID amount on Event of Washington, D.C. Highlights\"}}',0,NULL,'2023-09-19 07:41:07','2023-09-19 07:41:07'),
('3bf1c70a-d38e-460f-b6ef-64a7141bbfb8','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"3bf1c70a-d38e-460f-b6ef-64a7141bbfb8\",\"for_admin\":1,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"admin\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/admin\\/module\\/report\\/booking\",\"type\":\"event\",\"message\":\"Demo has updated the PAID amount on Event of Washington, D.C. Highlights\"}}',1,NULL,'2023-09-19 07:41:06','2023-09-19 07:41:06'),
('4675bc75-9c8e-45c1-80ec-cca29723a7db','App\\Notifications\\AdminChannelServices','App\\Models\\User',15,'{\"id\":\"4675bc75-9c8e-45c1-80ec-cca29723a7db\",\"for_admin\":1,\"notification\":{\"id\":15,\"name\":\"Tag Info\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/admin\\/module\\/user\\/userUpgradeRequest\",\"type\":\"user_upgrade_request\",\"message\":\"Tag Info has requested to become a vendor\"}}',1,NULL,'2024-04-23 13:27:35','2024-04-23 13:27:35'),
('4675f5e7-8ca8-4519-8a81-f5a73a70e3ea','App\\Notifications\\PrivateChannelServices','App\\User',1,'{\"id\":\"4675f5e7-8ca8-4519-8a81-f5a73a70e3ea\",\"for_admin\":0,\"notification\":{\"id\":12,\"event\":\"EnquirySendEvent\",\"to\":\"vendor\",\"name\":\"Kumar Abhi\",\"avatar\":\"\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/vendor\\/enquiry-report\",\"type\":\"enquiry\",\"message\":\"Kumar Abhi has sent a Enquiry for Event of Washington, D.C. Highlights\"}}',0,NULL,'2023-09-19 06:35:15','2023-09-19 06:35:15'),
('46d76b77-1108-4e0e-a278-ea67cdc091b6','App\\Notifications\\PrivateChannelServices','App\\User',11,'{\"id\":\"46d76b77-1108-4e0e-a278-ea67cdc091b6\",\"for_admin\":0,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"customer\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/user\\/booking-history\",\"type\":\"event\",\"message\":\"Demo has updated the PAID amount on Event of Washington, D.C. Highlights\"}}',0,NULL,'2023-09-19 07:41:06','2023-09-19 07:41:06'),
('46e71f94-ee76-4191-b9b6-8619e590a352','App\\Notifications\\AdminChannelServices','App\\User',15,'{\"id\":\"46e71f94-ee76-4191-b9b6-8619e590a352\",\"for_admin\":1,\"notification\":{\"id\":15,\"event\":\"SendMailUserRegistered\",\"to\":\"admin\",\"name\":\"Tag Info\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/admin\\/module\\/user?s=15\",\"type\":\"user\",\"message\":\"Tag Info has been registered\"}}',1,NULL,'2024-04-23 13:26:52','2024-04-23 13:26:52'),
('4921615f-a637-4bc7-bde0-ca97a29b1fcc','App\\Notifications\\PrivateChannelServices','App\\User',6,'{\"id\":\"4921615f-a637-4bc7-bde0-ca97a29b1fcc\",\"for_admin\":0,\"notification\":{\"id\":6,\"event\":\"BookingCreatedEvent\",\"to\":\"vendor\",\"name\":\"Kumar Abhi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/vendor\\/booking-report\",\"type\":\"hotel\",\"message\":\"Kumar Abhi has created new Booking\"}}',0,NULL,'2023-09-19 06:18:07','2023-09-19 06:18:07'),
('4b36d94b-fee5-4f0b-b33b-4cb28b832201','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"4b36d94b-fee5-4f0b-b33b-4cb28b832201\",\"for_admin\":1,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"admin\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/admin\\/module\\/report\\/booking\",\"type\":\"event\",\"message\":\"Demo has updated the PAID amount on Event of Washington, D.C. Highlights\"}}',1,NULL,'2023-09-19 07:41:35','2023-09-19 07:41:35'),
('4e94dddd-e3cc-44b3-9cf3-39e92ae32106','App\\Notifications\\PrivateChannelServices','App\\User',4,'{\"id\":\"4e94dddd-e3cc-44b3-9cf3-39e92ae32106\",\"for_admin\":0,\"notification\":{\"event\":\"BookingUpdatedEvent\",\"to\":\"vendor\",\"id\":11,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/vendor\\/booking-report\",\"type\":\"tour\",\"message\":\"Los Angeles to San Francisco Express  has changed to confirmed\"}}',0,NULL,'2024-07-26 20:58:40','2024-07-26 20:58:40'),
('50ed4701-a35c-409c-acab-c68ad8cd8e02','App\\Notifications\\PrivateChannelServices','Modules\\User\\Models\\User',10,'{\"id\":\"50ed4701-a35c-409c-acab-c68ad8cd8e02\",\"for_admin\":0,\"notification\":{\"id\":10,\"event\":\"VendorApproved\",\"to\":\"vendor\",\"name\":\"gregos greg\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/user\\/dashboard\",\"type\":\"user_upgrade_request\",\"message\":\"Your upgrade request has approved already\"}}',0,NULL,'2023-05-17 13:55:12','2023-05-17 13:55:12'),
('531f10ec-c443-42af-9d3a-47c9c8237cb5','App\\Notifications\\AdminChannelServices','App\\User',11,'{\"id\":\"531f10ec-c443-42af-9d3a-47c9c8237cb5\",\"for_admin\":1,\"notification\":{\"id\":11,\"event\":\"SendMailUserRegistered\",\"to\":\"admin\",\"name\":\"Kumar Abhi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user?s=11\",\"type\":\"user\",\"message\":\"Kumar Abhi has been registered\"}}',1,NULL,'2023-09-18 05:32:16','2023-09-18 05:32:16'),
('5d664c68-94cd-4161-8f70-84fd06744119','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"5d664c68-94cd-4161-8f70-84fd06744119\",\"for_admin\":1,\"notification\":{\"id\":3,\"event\":\"BookingCreatedEvent\",\"to\":\"admin\",\"name\":\"Test Software\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/report\\/booking\",\"type\":\"car\",\"message\":\"Test Software has created new Booking\"}}',1,NULL,'2023-05-25 18:54:48','2023-05-25 18:54:48'),
('66edd0dd-be05-41e9-8291-907e4ef77aa6','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"66edd0dd-be05-41e9-8291-907e4ef77aa6\",\"for_admin\":1,\"notification\":{\"id\":13,\"event\":\"BookingCreatedEvent\",\"to\":\"admin\",\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/admin\\/module\\/report\\/booking\",\"type\":\"space\",\"message\":\"Demo has created new Booking\"}}',1,NULL,'2024-12-31 19:14:18','2024-12-31 19:14:18'),
('685d6c66-7d9d-4691-aef0-cc924d08658b','App\\Notifications\\PrivateChannelServices','App\\User',11,'{\"id\":\"685d6c66-7d9d-4691-aef0-cc924d08658b\",\"for_admin\":0,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"customer\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/user\\/booking-history\",\"type\":\"event\",\"message\":\"Demo has updated the PAID amount on Event of Washington, D.C. Highlights\"}}',0,NULL,'2023-09-19 07:41:07','2023-09-19 07:41:07'),
('7307da68-05b3-4a31-8334-3026b516c8a0','App\\Notifications\\AdminChannelServices','App\\Models\\User',13,'{\"id\":\"7307da68-05b3-4a31-8334-3026b516c8a0\",\"for_admin\":1,\"notification\":{\"id\":13,\"name\":\"Nitesh Malviya\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user\\/userUpgradeRequest\",\"type\":\"user_upgrade_request\",\"message\":\"Nitesh Malviya has requested to become a vendor\"}}',1,NULL,'2023-09-30 09:47:43','2023-09-30 09:47:43'),
('756c96fa-e16a-4b96-a72b-e72ebe2d2a6a','App\\Notifications\\AdminChannelServices','App\\Models\\User',11,'{\"id\":\"756c96fa-e16a-4b96-a72b-e72ebe2d2a6a\",\"for_admin\":1,\"notification\":{\"id\":9,\"event\":\"BookingCreatedEvent\",\"to\":\"admin\",\"name\":\"Kumar Abhi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/report\\/booking\",\"type\":\"event\",\"message\":\"Kumar Abhi has created new Booking\"}}',1,NULL,'2023-09-19 06:51:59','2023-09-19 06:51:59'),
('76ef443a-b3ef-4f18-8c60-8b2600c7159f','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"76ef443a-b3ef-4f18-8c60-8b2600c7159f\",\"for_admin\":1,\"notification\":{\"event\":\"BookingUpdatedEvent\",\"to\":\"admin\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/admin\\/module\\/report\\/booking\",\"type\":\"event\",\"message\":\"Event of Washington, D.C. Highlights has changed to completed\"}}',1,NULL,'2023-09-19 07:41:54','2023-09-19 07:41:54'),
('7733f4d5-1812-49f2-aba8-db5defb8a00d','App\\Notifications\\AdminChannelServices','App\\Models\\User',11,'{\"id\":\"7733f4d5-1812-49f2-aba8-db5defb8a00d\",\"for_admin\":1,\"notification\":{\"id\":6,\"event\":\"BookingCreatedEvent\",\"to\":\"admin\",\"name\":\"Kumar Abhi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/report\\/booking\",\"type\":\"hotel\",\"message\":\"Kumar Abhi has created new Booking\"}}',1,NULL,'2023-09-19 06:18:07','2023-09-19 06:18:07'),
('794aeb17-c0c0-4a52-8f20-1b9b283b5e80','App\\Notifications\\PrivateChannelServices','App\\User',11,'{\"id\":\"794aeb17-c0c0-4a52-8f20-1b9b283b5e80\",\"for_admin\":0,\"notification\":{\"event\":\"BookingUpdatedEvent\",\"to\":\"customer\",\"id\":11,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/user\\/booking-history\",\"type\":\"tour\",\"message\":\"Los Angeles to San Francisco Express  has changed to confirmed\"}}',0,NULL,'2024-07-26 20:59:05','2024-07-26 20:59:05'),
('8457e049-e0df-4aa9-aebf-550fcd061e71','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"8457e049-e0df-4aa9-aebf-550fcd061e71\",\"for_admin\":1,\"notification\":{\"id\":17,\"event\":\"CreatedServicesEvent\",\"to\":\"admin\",\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/tour\\/edit\\/17\",\"type\":\"tour\",\"message\":\"Demo has created tour TEST TOUR\"}}',1,NULL,'2023-10-31 09:16:41','2023-10-31 09:16:41'),
('89e84713-1935-4a60-b5a0-fa3d30336559','App\\Notifications\\PrivateChannelServices','App\\User',1,'{\"id\":\"89e84713-1935-4a60-b5a0-fa3d30336559\",\"for_admin\":0,\"notification\":{\"event\":\"BookingUpdatedEvent\",\"to\":\"vendor\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/vendor\\/booking-report\",\"type\":\"event\",\"message\":\"Event of Washington, D.C. Highlights has changed to completed\"}}',0,NULL,'2023-09-19 07:41:54','2023-09-19 07:41:54'),
('8f1e2296-b040-458b-b799-095099b5dddf','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"8f1e2296-b040-458b-b799-095099b5dddf\",\"for_admin\":1,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"admin\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/admin\\/module\\/report\\/booking\",\"type\":\"event\",\"message\":\"Demo has updated the PAID amount on Event of Washington, D.C. Highlights\"}}',1,NULL,'2023-09-19 07:41:07','2023-09-19 07:41:07'),
('91245ef9-2c38-403c-addf-04a6eeaff548','App\\Notifications\\AdminChannelServices','App\\User',14,'{\"id\":\"91245ef9-2c38-403c-addf-04a6eeaff548\",\"for_admin\":1,\"notification\":{\"id\":14,\"event\":\"SendMailUserRegistered\",\"to\":\"admin\",\"name\":\"Tagline infotech\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user?s=14\",\"type\":\"user\",\"message\":\"Tagline infotech has been registered\"}}',1,NULL,'2024-04-23 13:25:44','2024-04-23 13:25:44'),
('93cb2288-eea9-41c6-81e8-61f81294a150','App\\Notifications\\AdminChannelServices','App\\User',12,'{\"id\":\"93cb2288-eea9-41c6-81e8-61f81294a150\",\"for_admin\":1,\"notification\":{\"id\":12,\"event\":\"SendMailUserRegistered\",\"to\":\"admin\",\"name\":\"Ravi Ravi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user?s=12\",\"type\":\"user\",\"message\":\"Ravi Ravi has been registered\"}}',1,NULL,'2023-09-18 05:53:07','2023-09-18 05:53:07'),
('967f2cda-58ad-4ea5-a918-62f0add6e799','App\\Notifications\\PrivateChannelServices','Modules\\User\\Models\\User',12,'{\"id\":\"967f2cda-58ad-4ea5-a918-62f0add6e799\",\"for_admin\":0,\"notification\":{\"id\":12,\"event\":\"VendorApproved\",\"to\":\"vendor\",\"name\":\"Ravi Ravi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/user\\/dashboard\",\"type\":\"user_upgrade_request\",\"message\":\"Your upgrade request has approved already\"}}',0,NULL,'2023-09-18 05:55:15','2023-09-18 05:55:15'),
('9d128be9-b0b0-405c-8d7c-2ee5884026b5','App\\Notifications\\PrivateChannelServices','App\\User',11,'{\"id\":\"9d128be9-b0b0-405c-8d7c-2ee5884026b5\",\"for_admin\":0,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"customer\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/user\\/booking-history\",\"type\":\"event\",\"message\":\"Demo has updated the PAID amount on Event of Washington, D.C. Highlights\"}}',0,NULL,'2023-09-19 07:41:35','2023-09-19 07:41:35'),
('b6a0b91c-5c21-4acd-adeb-b83daf4b8195','App\\Notifications\\PrivateChannelServices','App\\User',11,'{\"id\":\"b6a0b91c-5c21-4acd-adeb-b83daf4b8195\",\"for_admin\":0,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"customer\",\"id\":11,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/user\\/booking-history\",\"type\":\"tour\",\"message\":\"Administrator has updated the PAID amount on Los Angeles to San Francisco Express \"}}',0,NULL,'2024-07-26 20:58:20','2024-07-26 20:58:20'),
('bf362d4e-3d7a-45f6-84bb-ec91aac408b0','App\\Notifications\\AdminChannelServices','App\\Models\\User',11,'{\"id\":\"bf362d4e-3d7a-45f6-84bb-ec91aac408b0\",\"for_admin\":1,\"notification\":{\"id\":11,\"event\":\"BookingCreatedEvent\",\"to\":\"admin\",\"name\":\"Kumar Abhi\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/admin\\/module\\/report\\/booking\",\"type\":\"tour\",\"message\":\"Kumar Abhi has created new Booking\"}}',1,NULL,'2024-07-26 20:54:34','2024-07-26 20:54:34'),
('c0613a06-b384-45b4-9a3b-a3843cfe2c19','App\\Notifications\\AdminChannelServices','App\\Models\\User',11,'{\"id\":\"c0613a06-b384-45b4-9a3b-a3843cfe2c19\",\"for_admin\":1,\"notification\":{\"id\":11,\"name\":\"Kumar Abhi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/user\\/userUpgradeRequest\",\"type\":\"user_upgrade_request\",\"message\":\"Kumar Abhi has requested to become a vendor\"}}',1,NULL,'2023-09-18 05:32:57','2023-09-18 05:32:57'),
('c2364113-1334-4fdf-b243-413a8982f048','App\\Notifications\\AdminChannelServices','App\\Models\\User',11,'{\"id\":\"c2364113-1334-4fdf-b243-413a8982f048\",\"for_admin\":1,\"notification\":{\"id\":5,\"event\":\"BookingCreatedEvent\",\"to\":\"admin\",\"name\":\"Kumar Abhi\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/admin\\/module\\/report\\/booking\",\"type\":\"hotel\",\"message\":\"Kumar Abhi has created new Booking\"}}',1,NULL,'2023-09-18 05:33:57','2023-09-18 05:33:57'),
('c317d0b4-04aa-4363-956e-25d2b03b8747','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"c317d0b4-04aa-4363-956e-25d2b03b8747\",\"for_admin\":1,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"admin\",\"id\":9,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/admin\\/module\\/report\\/booking\",\"type\":\"event\",\"message\":\"Demo has updated the PAID amount on Event of Washington, D.C. Highlights\"}}',1,NULL,'2023-09-19 07:41:07','2023-09-19 07:41:07'),
('c5b307fe-463b-4ce8-8240-655328e13db8','App\\Notifications\\PrivateChannelServices','App\\User',6,'{\"id\":\"c5b307fe-463b-4ce8-8240-655328e13db8\",\"for_admin\":0,\"notification\":{\"id\":10,\"event\":\"BookingCreatedEvent\",\"to\":\"vendor\",\"name\":\"Nitesh Malviya\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/vendor\\/booking-report\",\"type\":\"hotel\",\"message\":\"Nitesh Malviya has created new Booking\"}}',0,NULL,'2023-09-30 09:46:52','2023-09-30 09:46:52'),
('c9c05d1d-924d-4c4d-91cc-ccbe3dd5fb88','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"c9c05d1d-924d-4c4d-91cc-ccbe3dd5fb88\",\"for_admin\":1,\"notification\":{\"event\":\"BookingUpdatedEvent\",\"to\":\"admin\",\"id\":11,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/admin\\/module\\/report\\/booking\",\"type\":\"tour\",\"message\":\"Los Angeles to San Francisco Express  has changed to confirmed\"}}',1,NULL,'2024-07-26 20:58:40','2024-07-26 20:58:40'),
('d12bf235-b0f6-41d1-b7e1-ed9ce9d475e2','App\\Notifications\\PrivateChannelServices','App\\User',4,'{\"id\":\"d12bf235-b0f6-41d1-b7e1-ed9ce9d475e2\",\"for_admin\":0,\"notification\":{\"event\":\"BookingUpdatedEvent\",\"to\":\"vendor\",\"id\":11,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/vendor\\/booking-report\",\"type\":\"tour\",\"message\":\"Los Angeles to San Francisco Express  has changed to confirmed\"}}',0,NULL,'2024-07-26 20:59:05','2024-07-26 20:59:05'),
('dae131f0-c86b-4c78-b431-ae41538d1042','App\\Notifications\\PrivateChannelServices','App\\User',4,'{\"id\":\"dae131f0-c86b-4c78-b431-ae41538d1042\",\"for_admin\":0,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"vendor\",\"id\":11,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/vendor\\/booking-report\",\"type\":\"tour\",\"message\":\"Administrator has updated the PAID amount on Los Angeles to San Francisco Express \"}}',0,NULL,'2024-07-26 20:58:20','2024-07-26 20:58:20'),
('ec0c4823-66bd-48b6-8417-f4371cbd99e3','App\\Notifications\\PrivateChannelServices','Modules\\User\\Models\\User',15,'{\"id\":\"ec0c4823-66bd-48b6-8417-f4371cbd99e3\",\"for_admin\":0,\"notification\":{\"id\":15,\"event\":\"VendorApproved\",\"to\":\"vendor\",\"name\":\"Tag Info\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/user\\/dashboard\",\"type\":\"user_upgrade_request\",\"message\":\"Your upgrade request has approved already\"}}',0,NULL,'2024-04-23 13:31:00','2024-04-23 13:31:00'),
('edb3e30d-15e6-4263-accc-b5ad27ba8083','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"edb3e30d-15e6-4263-accc-b5ad27ba8083\",\"for_admin\":1,\"notification\":{\"event\":\"SetPaidAmountEvent\",\"to\":\"admin\",\"id\":11,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/admin\\/module\\/report\\/booking\",\"type\":\"tour\",\"message\":\"Elise Aarohi has updated the PAID amount on Los Angeles to San Francisco Express \"}}',1,NULL,'2024-07-26 20:58:20','2024-07-26 20:58:20'),
('f5c0619b-0e3b-4075-af16-54db86fb7313','App\\Notifications\\AdminChannelServices','App\\Models\\User',15,'{\"id\":\"f5c0619b-0e3b-4075-af16-54db86fb7313\",\"for_admin\":1,\"notification\":{\"id\":15,\"event\":\"UserVerificationSubmit\",\"to\":\"admin\",\"name\":\"Tag Info\",\"avatar\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/images\\/avatar.png\",\"link\":\"https:\\/\\/booking2.test-softwares.online\\/public\\/admin\\/module\\/user\\/verification\",\"type\":\"user_verification_request\",\"message\":\"Tag Info has asked for verification\"}}',1,NULL,'2024-04-23 13:27:31','2024-04-23 13:27:31'),
('fee58232-a23f-409e-8456-c1b0c0948161','App\\Notifications\\AdminChannelServices','App\\Models\\User',1,'{\"id\":\"fee58232-a23f-409e-8456-c1b0c0948161\",\"for_admin\":1,\"notification\":{\"event\":\"BookingUpdatedEvent\",\"to\":\"admin\",\"id\":11,\"name\":\"Demo\",\"avatar\":\"https:\\/\\/booking2.testsoftwares.site\\/uploads\\/0000\\/1\\/2023\\/03\\/23\\/demo-logo.png\",\"link\":\"https:\\/\\/booking2.testsoftwares.site\\/admin\\/module\\/report\\/booking\",\"type\":\"tour\",\"message\":\"Los Angeles to San Francisco Express  has changed to confirmed\"}}',1,NULL,'2024-07-26 20:59:05','2024-07-26 20:59:05');
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `password_resets`
--

DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_resets` (
  `email` varchar(191) NOT NULL,
  `token` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_resets`
--

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

--
-- Table structure for table `personal_access_tokens`
--

DROP TABLE IF EXISTS `personal_access_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `personal_access_tokens` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tokenable_type` varchar(191) NOT NULL,
  `tokenable_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `token` varchar(64) NOT NULL,
  `abilities` text DEFAULT NULL,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `personal_access_tokens`
--

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

--
-- Table structure for table `user_meta`
--

DROP TABLE IF EXISTS `user_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `val` text DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_meta`
--

LOCK TABLES `user_meta` WRITE;
/*!40000 ALTER TABLE `user_meta` DISABLE KEYS */;
INSERT INTO `user_meta` (`id`, `user_id`, `name`, `val`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`) VALUES (1,15,'verify_data_phone','9868758568',15,NULL,NULL,'2024-04-23 13:27:31',NULL),
(2,15,'is_verified_phone','1',15,1,NULL,'2024-04-23 13:27:31','2024-04-23 13:31:23'),
(3,15,'verify_data_id_card','{\"path\":\"15/2024/04/23/a66752dbd4333cb4f93a013edfc1474c.png\",\"name\":\"1672176940-mo6nfi4m9wpng\",\"size\":2933,\"file_type\":\"image/png\",\"file_extension\":\"png\",\"download\":\"https://booking2.test-softwares.online/public/media/private/view?path=15%2F2024%2F04%2F23%2Fa66752dbd4333cb4f93a013edfc1474c.png\"}',15,NULL,NULL,'2024-04-23 13:27:31',NULL),
(4,15,'is_verified_id_card','1',15,1,NULL,'2024-04-23 13:27:31','2024-04-23 13:31:23'),
(5,15,'verify_data_trade_license','[\"{\\\"path\\\":\\\"15\\/2024\\/04\\/23\\/dab07e7d78c6be8992980cf018c7c67f.png\\\",\\\"name\\\":\\\"1672176940-mo6nfi4m9wpng\\\",\\\"size\\\":2933,\\\"file_type\\\":\\\"image\\/png\\\",\\\"file_extension\\\":\\\"png\\\",\\\"download\\\":\\\"https:\\/\\/booking2.test-softwares.online\\/public\\/media\\/private\\/view?path=15%2F2024%2F04%2F23%2Fdab07e7d78c6be8992980cf018c7c67f.png\\\"}\"]',15,NULL,NULL,'2024-04-23 13:27:31',NULL),
(6,15,'is_verified_trade_license','0',15,NULL,NULL,'2024-04-23 13:27:31',NULL);
/*!40000 ALTER TABLE `user_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_upgrade_request`
--

DROP TABLE IF EXISTS `user_upgrade_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_upgrade_request` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `role_request` int(11) DEFAULT NULL,
  `approved_time` datetime DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `approved_by` int(11) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_upgrade_request`
--

LOCK TABLES `user_upgrade_request` WRITE;
/*!40000 ALTER TABLE `user_upgrade_request` DISABLE KEYS */;
INSERT INTO `user_upgrade_request` (`id`, `user_id`, `role_request`, `approved_time`, `status`, `approved_by`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`) VALUES (1,10,2,'2023-05-17 19:25:12','approved',1,10,1,NULL,'2023-05-17 11:31:34','2023-05-17 13:55:12'),
(2,11,2,NULL,'pending',NULL,11,NULL,NULL,'2023-09-18 05:32:57','2023-09-18 05:32:57'),
(3,12,2,'2023-09-18 11:25:16','approved',1,12,1,NULL,'2023-09-18 05:53:18','2023-09-18 05:55:16'),
(4,13,2,NULL,'pending',NULL,13,NULL,NULL,'2023-09-30 09:47:43','2023-09-30 09:47:43'),
(5,15,2,'2024-04-23 19:01:00','approved',1,15,1,NULL,'2024-04-23 13:27:35','2024-04-23 13:31:00');
/*!40000 ALTER TABLE `user_upgrade_request` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_wishlist`
--

DROP TABLE IF EXISTS `user_wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_wishlist` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `object_id` int(11) DEFAULT NULL,
  `object_model` varchar(255) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_wishlist`
--

LOCK TABLES `user_wishlist` WRITE;
/*!40000 ALTER TABLE `user_wishlist` DISABLE KEYS */;
INSERT INTO `user_wishlist` (`id`, `object_id`, `object_model`, `user_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1,7,'car',1,1,NULL,'2025-03-21 09:09:32','2025-03-21 09:09:32');
/*!40000 ALTER TABLE `user_wishlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `first_name` varchar(255) DEFAULT NULL,
  `last_name` varchar(255) DEFAULT NULL,
  `business_name` varchar(255) DEFAULT NULL,
  `email` varchar(191) NOT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(191) NOT NULL,
  `two_factor_secret` text DEFAULT NULL,
  `two_factor_recovery_codes` text DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `address2` varchar(255) DEFAULT NULL,
  `phone` varchar(30) DEFAULT NULL,
  `birthday` date DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `state` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `zip_code` int(11) DEFAULT NULL,
  `last_login_at` datetime DEFAULT NULL,
  `avatar_id` bigint(20) DEFAULT NULL,
  `bio` text DEFAULT NULL,
  `status` varchar(20) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `vendor_commission_amount` int(11) DEFAULT NULL,
  `vendor_commission_type` varchar(30) DEFAULT NULL,
  `need_update_pw` tinyint(4) DEFAULT 0,
  `role_id` bigint(20) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `payment_gateway` varchar(30) DEFAULT NULL,
  `total_guests` int(11) DEFAULT NULL,
  `locale` varchar(10) DEFAULT NULL,
  `user_name` varchar(191) DEFAULT NULL,
  `verify_submit_status` varchar(30) DEFAULT NULL,
  `is_verified` smallint(6) DEFAULT NULL,
  `active_status` tinyint(1) NOT NULL DEFAULT 0,
  `dark_mode` tinyint(1) NOT NULL DEFAULT 0,
  `messenger_color` varchar(191) NOT NULL DEFAULT '#2180f3',
  `stripe_customer_id` varchar(191) DEFAULT NULL,
  `total_before_fees` decimal(10,2) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`),
  UNIQUE KEY `users_user_name_unique` (`user_name`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `name`, `first_name`, `last_name`, `business_name`, `email`, `email_verified_at`, `password`, `two_factor_secret`, `two_factor_recovery_codes`, `address`, `address2`, `phone`, `birthday`, `city`, `state`, `country`, `zip_code`, `last_login_at`, `avatar_id`, `bio`, `status`, `create_user`, `update_user`, `vendor_commission_amount`, `vendor_commission_type`, `need_update_pw`, `role_id`, `deleted_at`, `remember_token`, `created_at`, `updated_at`, `payment_gateway`, `total_guests`, `locale`, `user_name`, `verify_submit_status`, `is_verified`, `active_status`, `dark_mode`, `messenger_color`, `stripe_customer_id`, `total_before_fees`) VALUES (1,'Test Software','Test','Software','Demo','info@testsoftware.online','2023-03-23 08:49:25','$2y$10$ayMpqU2J1tJkFsFv0GknMOkQ/EPn7ExHqqzNtmPAm.X82HUTaYHDi',NULL,NULL,NULL,NULL,'1234567890','2023-03-23','Noida','Up','IN',201301,NULL,226,'<p>We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.</p>','publish',NULL,NULL,NULL,NULL,0,1,NULL,'a69pFSLMXDKpKkCsotbfAjNskd2zjlArqyNmf2XSgL0EtcUlRiVfQnco9a10','2023-03-23 08:49:25','2024-08-13 13:45:23',NULL,NULL,NULL,'admin',NULL,NULL,0,0,'#2180f3',NULL,NULL),
(2,'Vendor 01','Vendor','01',NULL,'vendor1@bookingcore.test','2023-03-23 08:49:25','$2y$10$2s2E7mQgbh1p/71o4t1uJ.DcrD.XqqO5E1JFiOElLcccr8V6xtr3O',NULL,NULL,NULL,NULL,'112 666 888',NULL,'New York',NULL,'US',NULL,NULL,NULL,'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.','publish',NULL,NULL,NULL,NULL,0,2,NULL,'SN21xmtrljoi71fjJv1A3YJowI4BgUGR6dBiUb06L1GRfr4RUkuRlmiuHbZn','2023-03-23 08:49:25','2023-09-18 05:52:10',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(3,'Customer 01','Customer','01',NULL,'customer1@bookingcore.test','2023-03-23 08:49:25','$2y$10$C6XP7KWEOrm7mtumqvYImuAYo.gEVbdxMYRpKACUlkw8Ve1IN8/8i',NULL,NULL,NULL,NULL,'112 666 888',NULL,'New York',NULL,'US',NULL,NULL,NULL,'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.','publish',NULL,NULL,NULL,NULL,1,3,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(4,'Elise Aarohi','Elise','Aarohi',NULL,'aarohi@bookingcore.test','2023-03-23 08:49:25','$2y$10$2QPfTXjv6cunPsrUa4KrtuLTIyKLAsO4TqW2wh5J2zvHQi9aXAaY.',NULL,NULL,NULL,NULL,'112 666 888',NULL,'New York',NULL,'US',NULL,NULL,NULL,'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.','publish',NULL,NULL,NULL,NULL,1,2,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(5,'Kaytlyn Alvapriya','Kaytlyn','Alvapriya',NULL,'alvapriya@bookingcore.test','2023-03-23 08:49:25','$2y$10$V51f94qENzNNKQKNxSyvkO/8PYQqiQRRBeqHk6ShwWt4OFTkOfO2q',NULL,NULL,NULL,NULL,'112 666 888',NULL,'New York',NULL,'US',NULL,NULL,NULL,'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.','publish',NULL,NULL,NULL,NULL,1,2,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(6,'Lynne Victoria','Lynne','Victoria',NULL,'victoria@bookingcore.test','2023-03-23 08:49:25','$2y$10$B2LPL/EKrOqkqL.Gfv1WVOnCyHDqVslq8zUXzP7wiqwOZipC36/mG',NULL,NULL,NULL,NULL,'112 666 888',NULL,'New York',NULL,'US',NULL,NULL,NULL,'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.','publish',NULL,NULL,NULL,NULL,1,2,NULL,NULL,'2023-03-23 08:49:25','2023-03-23 08:49:25',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(7,'Gyanendu Jigyasa','Gyanendu','Jigyasa',NULL,'gyanuk67@gmail.com',NULL,'$2y$10$qGAGTkqYEM5ILJF6Foul9O2MYnT3rqbWyK/g5dFvQzgB2oJB3dMDa',NULL,NULL,'Test Address','AFDSFDSGFDS','9106014883',NULL,'Test City',NULL,'IN',123456,NULL,NULL,NULL,'publish',NULL,NULL,NULL,NULL,0,3,NULL,NULL,'2023-03-23 15:52:44','2023-03-23 15:55:05',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(8,'System Admin','System','Admin',NULL,'admin@bookingcore.test','2023-03-27 16:01:04','$2y$10$hGX8vH29bpgiOor3N7aYq.NAvUBHaCalPwST4vNjHtgB1Vn3LZPY6',NULL,NULL,NULL,NULL,'112 666 888',NULL,'New York',NULL,'US',NULL,NULL,NULL,'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.','publish',NULL,NULL,NULL,NULL,1,1,NULL,NULL,'2023-03-27 16:01:04','2023-03-27 16:01:04',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(10,'gregos greg','gregos','greg',NULL,'arnold.bernard77@hotmail.com',NULL,'$2y$10$1BFucpFNV733eQTeT1XWp.yfpFL.RZ32tkh17HrKTRVtDlgYBz7oe',NULL,NULL,NULL,NULL,'922244332',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'publish',NULL,NULL,NULL,NULL,0,2,NULL,'iIlqnmlkc9UeEIbCXPFIChtJTThnLtw9QkFtmuBzVJr0U29t6P6npmjVpkSJ','2023-05-17 11:17:12','2023-05-17 13:55:12',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(11,'Kumar Abhi','Kumar','Abhi',NULL,'abhishek@peytonsoft.com',NULL,'$2y$10$z8JfecYWUYDelFCH1R4LsuWZUQ8s43sX8szraMSNv1Y8B9oSgrPAC',NULL,NULL,'sdddddd','ssssssss','9667732250',NULL,'ssss','ssssssss','IN',123332,NULL,NULL,NULL,'publish',NULL,NULL,NULL,NULL,0,3,NULL,'RQAezRnhK0TsYFkz4CdAzlsu40iqFj2aHgVYhoGBvpmsw3cbbRisaOg5xQ2s','2023-09-18 05:32:16','2024-08-10 21:15:04',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(12,'Ravi Ravi','Ravi','Ravi',NULL,'ravi@test.com','2023-09-18 05:54:43','$2y$10$lmvUchPKObyRm6l8u435kuLr.WZqJUNo8Zqjw5sJeDuZse0o/w3AK',NULL,NULL,NULL,NULL,'8767876788',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'publish',NULL,NULL,NULL,NULL,0,2,NULL,'trSTXkwoDIBdYtYjpwlPYyAOQ6n5SdyHkKZU0UCHIsr1DOyx1BVavyt1Nple','2023-09-18 05:53:07','2024-08-10 21:18:12',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(13,'Nitesh Malviya','Nitesh','Malviya',NULL,'nmalviya575@gmail.com',NULL,'$2y$10$XzqsPtqyxroep59Zy4b/rO5tneGVGxaBEaF93Su9ZCmr2Mba42RTe',NULL,NULL,'Mansarover Complex, FF-8, Block A, 2nd Floor','Habibganj Rd, Near Railway Station','+918871887109',NULL,'Bhopal','Madhya Pradesh','IN',462016,NULL,NULL,NULL,'publish',NULL,NULL,NULL,NULL,0,3,NULL,NULL,'2023-09-30 09:44:45','2023-09-30 09:46:52',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(14,'Tagline infotech','Tagline','infotech',NULL,'user@taglineinfotech.com',NULL,'$2y$10$A/PvKlznKwtOFRFf2.0M8O26GapBl4yrazk5rSEJPn.W85ZgoIvqW',NULL,NULL,NULL,NULL,'9878987678',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'publish',NULL,NULL,NULL,NULL,0,3,NULL,NULL,'2024-04-23 13:25:44','2024-04-23 13:25:44',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'#2180f3',NULL,NULL),
(15,'Tag Info','Tag','Info',NULL,'vendor@taglineinfotech.com',NULL,'$2y$10$4EtW78vno0pMGynklNSfiO6fAymA4xpYGjw1gx/B1x8pZS5TDMo2C',NULL,NULL,NULL,NULL,'6556778656',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'publish',NULL,NULL,NULL,NULL,0,2,NULL,NULL,'2024-04-23 13:26:52','2024-04-23 13:31:23',NULL,NULL,NULL,NULL,'completed',1,0,0,'#2180f3',NULL,NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vendor_team`
--

DROP TABLE IF EXISTS `vendor_team`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendor_team` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_id` bigint(20) NOT NULL,
  `member_id` bigint(20) NOT NULL,
  `permissions` text DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `create_user` int(11) DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_team`
--

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

--
-- Table structure for table `vendors_plan_payments`
--

DROP TABLE IF EXISTS `vendors_plan_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendors_plan_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_id` int(11) NOT NULL,
  `amount` int(11) NOT NULL,
  `payment_gateway` varchar(191) DEFAULT NULL,
  `free_trial` int(11) NOT NULL,
  `price_per` enum('onetime','per_time') NOT NULL DEFAULT 'onetime',
  `price_unit` enum('day','month','year') NOT NULL DEFAULT 'day',
  `status` varchar(20) DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendors_plan_payments`
--

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

--
-- Dumping events for database 'gyannewsoftware_booking23'
--

--
-- Dumping routines for database 'gyannewsoftware_booking23'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2025-06-06 17:15:32
